import { Attributes, FC, ReactElement } from 'react'; import { Film } from '../components/StyledSelectAutocompleteExample'; export declare const withRenderCounter: (Component: FC) => { Wrapped: (props: T & Attributes) => ReactElement; getRenderCount: () => number; }; export declare const generateOptions: (n: number) => Film[];