import { Classes } from '../../types';
declare const _default: import("vue").DefineComponent<{
    /**
     * Display the table with borders
     * @type Boolean
     * @default false
     * @name border
     */
    border: {
        type: BooleanConstructor;
        default: boolean;
    };
    /**
     * Display the table rows as condensed
     * @type Boolean
     * @default false
     * @name condensed
     */
    condensed: {
        type: BooleanConstructor;
        default: boolean;
    };
    /**
     * Display the table rows as alternating stripes
     * @type Boolean
     * @default false
     * @name striped
     */
    striped: {
        type: BooleanConstructor;
        default: boolean;
    };
    /**
     * Set the table rows as hoverable
     * @type Boolean
     * @default false
     * @name hover
     */
    hover: {
        type: BooleanConstructor;
        default: boolean;
    };
    /**
     * Set the table to be responsive, enabling horizontal scroll when overflowing the parent container
     * @type Boolean | xs | sm | md | lg | xl | xxl
     * @default false
     * @name responsive
     */
    responsive: {
        type: (StringConstructor | BooleanConstructor)[];
        default: boolean;
    };
    /**
     * Display the table rows without wrapping white-space
     * @type Boolean
     * @default false
     * @name nowrap
     */
    nowrap: {
        type: BooleanConstructor;
        default: boolean;
    };
    /**
     * The color variant of the table
     * @type primary | success | light | dark | info | success | warning | danger
     * @default light
     * @name color
     */
    color: {
        type: StringConstructor;
        default: () => string;
    };
}, unknown, unknown, {
    classes(): Classes;
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
    border?: unknown;
    condensed?: unknown;
    striped?: unknown;
    hover?: unknown;
    responsive?: unknown;
    nowrap?: unknown;
    color?: unknown;
} & {
    color: string;
    border: boolean;
    hover: boolean;
    condensed: boolean;
    striped: boolean;
    responsive: string | boolean;
    nowrap: boolean;
} & {}>, {
    color: string;
    border: boolean;
    hover: boolean;
    condensed: boolean;
    striped: boolean;
    responsive: string | boolean;
    nowrap: boolean;
}>;
export default _default;
