import { SelectItem } from '../types';
import { ItemSize } from '../../../shared/types/item-size';
type SelectOptionProps = SelectItem & {
    size?: ItemSize;
};
export declare function SelectOption({ icon, value, label, size, ...props }: SelectOptionProps): import("react/jsx-runtime").JSX.Element;
export {};
