import { HTMLAttributes, Ref, TableHTMLAttributes } from 'react';
import { IComponentBaseProps, Size } from '../types';
export declare const TABLE = "table";
export declare const SIZE_MAP: Record;
export declare const TABLE_MAP: {
zebra: string;
pinRows: string;
pinCols: string;
xs: string;
sm: string;
md: string;
lg: string;
xl: string;
};
export interface TableProps extends TableHTMLAttributes, IComponentBaseProps {
ref?: Ref;
size?: Size;
zebra?: boolean;
pinRows?: boolean;
pinCols?: boolean;
responsive?: boolean;
wrapperProps?: HTMLAttributes;
}