import type { Generic } from 'adopted-style-sheets'; export type FixedColsPropType = [number, number]; export type PropFixedCols = { fixedCols: FixedColsPropType; }; export declare const validateFixedCols: (component: Generic.Element.Component, value?: FixedColsPropType) => void;