import type { CSSProperties, ReactNode } from 'react'; export interface DropDownListItem { key: string; label: string; visible?: boolean; } export interface DropDownListProps { data: T[]; renderItem?: ((item: DropDownListItem) => ReactNode) | null; } interface DropDownButtonProps extends DropDownListProps { selectedKey?: string; onSelect?: (item: DropDownListItem) => void; formatSelectedValue?: (Item: DropDownListItem) => string; style?: CSSProperties; className?: string; } declare function DropDownButton(props: DropDownButtonProps): import("react/jsx-runtime").JSX.Element; export default DropDownButton; //# sourceMappingURL=DropDownButton.d.ts.map