@remotion/player
Version:
React component for embedding a Remotion preview into your app
7 lines (6 loc) • 415 B
TypeScript
import type { queries, RenderOptions } from '@testing-library/react';
import type { FC, ReactElement } from 'react';
declare const HelloWorld: FC;
declare const customRender: (ui: ReactElement, options?: Omit<RenderOptions, "queries">) => import("@testing-library/react").RenderResult<typeof queries, HTMLElement, HTMLElement>;
export * from '@testing-library/react';
export { HelloWorld, customRender as render };