import { PropType } from 'vue';
import type { Align, columnsInterface } from './interface';
export declare const Props: {
    readonly data: {
        readonly type: PropType<unknown[]>;
        readonly default: () => any[];
    };
    readonly columns: {
        readonly type: PropType<columnsInterface[]>;
        readonly default: () => columnsInterface[];
    };
    readonly trHeight: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly align: {
        readonly type: PropType<Align>;
        readonly default: () => Align;
        readonly validator: (v: Align) => boolean;
    };
    readonly zebra: BooleanConstructor;
    readonly border: BooleanConstructor;
    readonly width: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly height: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly num: BooleanConstructor;
    readonly important: {
        readonly type: PropType<number[]>;
        readonly default: () => number[];
    };
    readonly importantColor: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
};
