import { Props } from 'react-select'; import React from 'react'; import { Shape, Status, Size } from '../types'; import { GroupTypeBase, OptionTypeBase } from 'react-select/src/types'; interface CustomProps { shape?: Shape; status?: Status; size?: Size; } declare type SelectMainProps = GroupTypeBase> = CustomProps & Props; declare const SelectMain: { = GroupTypeBase>(props: React.PropsWithChildren>): JSX.Element; defaultProps: { shape: string; status: string; size: string; }; }; export default SelectMain; //# sourceMappingURL=index.d.ts.map