import React from 'react';
import { ScrollbarShadowsProps } from '@/ui/components/scrollbar';
export interface TableProps extends Omit<React.ComponentProps<'table'>, 'ref'> {
    scrollShadows?: ScrollbarShadowsProps;
    fullWidth?: boolean;
}
export declare const Table: React.FC<TableProps>;
export * from './styled';
export * from './cell';
