///
/** @jsx jsx */
import { jsx } from '@emotion/react';
import { Props } from 'react-select';
declare const Select: React.FC;
export declare function Indicator(props: any): jsx.JSX.Element;
export declare type SelectProps = Props & {
label?: string;
placeholder?: string;
error?: boolean;
onClear?: () => void;
isClearable?: boolean;
loading?: boolean;
hasValue?: boolean;
async?: boolean;
style?: React.CSSProperties;
menuListStyle?: {};
shapeValue?: any;
options?: any;
value?: string;
};
export declare type OptionProps = {
value?: string;
label?: string;
};
export interface Option {
readonly label: string;
readonly value: string;
}
export default Select;