import React from "react"; export declare type CaSelectSize = "small" | "medium" | "large"; declare type SelectType = { label: string; value: any; [x: string]: any; }; export declare type CaSelectProps = { size?: CaSelectSize; label?: string; value?: SelectType["value"]; options: SelectType[]; onChange?: (value: SelectType["value"]) => void; ["aria-invalid"]?: boolean; under?: React.ReactNode; placeholder?: string; className?: string; disabled?: boolean; onReset?: () => void; }; declare function CaSelect({ size, label, value, options, onChange, under, placeholder, className, disabled, onReset, ...props }: CaSelectProps): JSX.Element; export default CaSelect;