import type { ComponentProps, FC } from 'react';
import Creatable from 'react-select/creatable';
type CreatableProps = ComponentProps<typeof Creatable>;
export type Props = {
    label?: string;
    createLabel?: string;
    error?: boolean;
    zIndexMenu?: number;
} & CreatableProps;
declare const CreatableSelect: FC<Props>;
export default CreatableSelect;
//# sourceMappingURL=CreatableSelect.d.ts.map