import { PropType } from 'vue';
import { validateNumber } from '../utils/Timestamp';
export interface ColumnObject {
    [key: string]: any;
}
export type ColumnObjectArray = ColumnObject[];
export interface ColumnProps {
    columnCount: number | string;
    columnIndexStart: number | string;
}
export declare const useColumnProps: {
    readonly columnCount: {
        readonly type: PropType<ColumnProps["columnCount"]>;
        readonly default: 0;
        readonly validator: typeof validateNumber;
    };
    readonly columnIndexStart: {
        readonly type: PropType<ColumnProps["columnIndexStart"]>;
        readonly default: 0;
        readonly validator: typeof validateNumber;
    };
};
