import { DocDemoTemplate } from '../../../_demo/types.ts';
export declare const docs: {
    'zh-CN': string;
};
export declare const schema: {
    border: {
        type: "list";
        list: readonly ["all", "row", "column", "frame", "row-column", "row-frame", "column-frame", "none"];
    };
    loading: {
        type: "boolean";
        default: false;
    };
    small: {
        type: "boolean";
        default: false;
    };
    emptyLabel: {
        type: "string";
        default: undefined;
    };
    loadingLabel: {
        type: "string";
        default: undefined;
    };
};
export declare const ctx: {
    columns: {
        label: string;
        key: string;
    }[];
    data: {
        no: number;
        key: number;
        name: string;
        salary: number;
        address: string;
        email: string;
        other: string;
    }[];
};
export declare const template: DocDemoTemplate<typeof schema>;
