import { IconName } from '@linzjs/lui/dist/components/LuiIcon/LuiIcon';
export declare const gridCopyOptions: Record<string, {
    text: string;
    icon: IconName;
    developer?: boolean;
}>;
export type CopyOptionsKey = keyof typeof gridCopyOptions;
export declare const useGridCopySettings: () => {
    copyType: string;
    setCopyType: (key: CopyOptionsKey) => void;
};
