import { JSX, ReactNode } from "react";
export interface Table {
    list?: any;
    formatter?: Function;
    fallback?: string | ReactNode | JSX.Element;
    style?: object;
    fix?: boolean;
}
export default function Table(props: Table): JSX.Element;
//# sourceMappingURL=Table.d.ts.map