import React from "react"; export declare type CaTableProps = React.DetailedHTMLProps, HTMLTableElement> & { align?: "left" | "center" | "right"; withoutShadow?: boolean; }; declare function CaTable({ className, align, withoutShadow, ...props }: CaTableProps): JSX.Element; export default CaTable;