import React, { CSSProperties, ReactNode } from 'react';
type Props = {
    children: ReactNode;
    horizontalPadding?: string;
    verticalPadding?: string;
    className?: string;
    style?: CSSProperties;
};
declare const Table: ({ children, className, style, horizontalPadding, verticalPadding, }: Props) => React.JSX.Element;
export { Table };
