import { FC, ReactNode } from 'react'; export interface CommonProps { /** * Used to locate this element in end-to-end tests. */ testID?: string; } type PropsWithChildren = Props & { children: ReactNode; }; export type FCWithChildren = FC>; export {}; //# sourceMappingURL=types.d.ts.map