export interface TableColumnsMenuProps { /** * Trigger label. Falls back to the localised `table.columns` label from * `LabelProvider` when not provided. */ triggerLabel?: React.ReactNode; /** * Additional class name on the dropdown trigger button. */ className?: string; } export declare const TableColumnsMenu: { ({ triggerLabel, className }: TableColumnsMenuProps): import("react/jsx-runtime").JSX.Element; displayName: string; };