declare const tableVariants: (props?: ({
    variant?: "default" | "dark" | "subtle" | null | undefined;
    bordered?: boolean | null | undefined;
    rounded?: boolean | null | undefined;
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
declare const tableHeaderCellVariants: (props?: ({
    variant?: "default" | "dark" | "subtle" | null | undefined;
    align?: "left" | "center" | "right" | null | undefined;
    sticky?: boolean | null | undefined;
    lined?: boolean | null | undefined;
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
declare const tableRowVariants: (props?: ({
    variant?: "default" | "dark" | "subtle" | null | undefined;
    striped?: boolean | null | undefined;
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
declare const tableCellVariants: (props?: ({
    variant?: "default" | "dark" | "subtle" | null | undefined;
    density?: "default" | "relaxed" | "compact" | null | undefined;
    align?: "left" | "center" | "right" | null | undefined;
    lined?: boolean | null | undefined;
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
export { tableCellVariants, tableHeaderCellVariants, tableRowVariants, tableVariants, };
