export * from './utility'; export type ComponentWithDefaultProps
= ((props: P) => React.ReactElement) & { defaultProps: Partial
; }; export type ForwardRefComponentWithDefaultProps
= ((props: P, ref: R) => React.ReactElement) & { defaultProps?: Partial
; }; //# sourceMappingURL=index.d.ts.map