import type { ReactNode } from 'react'; type ContextType = { width?: string; maxWidth?: string; minWidth?: string; } | undefined; type ColumnProviderProps = { width?: string; maxWidth?: string; minWidth?: string; children?: ReactNode; }; export declare const ColumnProvider: ({ width, minWidth, maxWidth, children }: ColumnProviderProps) => import("react").JSX.Element; export declare const useColumnProvider: () => ContextType; export {}; //# sourceMappingURL=ColumnProvider.d.ts.map