import { LabelModeProps } from '../../types'; interface UseColumnStylesProps { labelMode?: LabelModeProps; } interface LabelStyleProps { sx: { gridTemplateColumns: string; }; } declare const useColumnStyles: ({ labelMode }: UseColumnStylesProps) => LabelStyleProps; export default useColumnStyles;