import type { DropdownChipLabelProps } from './DropdownChipLabel'; import type { DropdownFilterProps } from './DropdownFilter'; import type { DropdownInputProps } from './DropdownInput'; import type { DropdownMultiSelectProps } from './DropdownMultiSelect'; export type OldDropdownChipLabelProps = Omit, 'allSelected' | 'onChange'> & { /** @deprecated allSelected를 대신 사용해주세요. */ isAllCheck?: boolean; /** @deprecated onChange를 대신 사용해주세요. */ onOptionValuesChange?: (values: Array) => void; }; export declare function convertOldDropdownChipLabelProps(props: OldDropdownChipLabelProps): DropdownChipLabelProps; export type OldDropdownFilterProps = Omit, 'leftIcon' | 'variant' | 'hasSelectAll' | 'hasFilter'> & { /** @deprecated leftIcon을 대신 사용해주세요. */ startIcon?: DropdownFilterProps['leftIcon']; /** @deprecated variant를 대신 사용해주세요. */ kind?: DropdownFilterProps['variant']; /** @deprecated hasSelectAll을 대신 사용해주세요. */ allCheck?: boolean; /** @deprecated hasFilter를 대신 사용해주세요. */ showFilter?: boolean; }; export declare function convertOldDropdownFilterProps(props: OldDropdownFilterProps): DropdownFilterProps; export type OldDropdownInputProps = Omit, 'leftIcon' | 'rightIcon'> & { /** @deprecated leftIcon을 대신 사용해주세요. */ startElement?: DropdownInputProps['leftIcon']; /** @deprecated rightIcon을 대신 사용해주세요. */ endElement?: DropdownInputProps['rightIcon']; }; export declare function convertOldDropdownInputProps(props: OldDropdownInputProps): DropdownInputProps; export type OldDropdownMultiSelectProps = Omit, 'hasSelectAll'> & { /** @deprecated hasSelectAll을 대신 사용해주세요. */ allCheck?: boolean; }; export declare function convertOldDropdownMultiSelectProps(props: OldDropdownMultiSelectProps): DropdownMultiSelectProps;