import type { ComponentProps, FC } from 'react';
import ReactSelect, { DropdownIndicatorProps } from 'react-select';
export type Props = {
    error?: boolean;
    zIndexMenu?: number;
    maxWidth?: string;
} & ComponentProps<typeof ReactSelect>;
export declare const DropdownIndicator: (props: DropdownIndicatorProps) => import("react/jsx-runtime").JSX.Element;
export declare const Select: FC<Props>;
export default Select;
//# sourceMappingURL=Select.d.ts.map