import type { SelectV2Props } from './token'; import type { Option } from './select.types'; export interface Props { label?: string; value?: string; disabled?: string; options?: string; } export declare const defaultProps: Required; export declare function useProps(props: Pick): { aliasProps: any; getLabel: (option: Option) => any; getValue: (option: Option) => any; getDisabled: (option: Option) => any; getOptions: (option: Option) => any; };