import type { Generic } from 'adopted-style-sheets';
import type { WatchNumberOptions } from '../utils';
import type { RowsPropType } from './rows';
export type MaxPropType = number;
export type PropMax = {
    max: MaxPropType;
};
export declare const validateMax: (component: Generic.Element.Component, value?: RowsPropType, options?: WatchNumberOptions) => void;
