import React from 'react';
export declare function Table({ children }: {
    children: any;
}): React.JSX.Element;
export declare function Tr({ children, isOdd }: {
    children: any;
    isOdd: any;
}): React.JSX.Element;
export declare function Td({ children }: {
    children: any;
}): React.JSX.Element;
export declare function Th({ children }: {
    children: any;
}): React.JSX.Element;
