import React from 'react'; export interface TableStatusTextProps { text: string | React.ReactNode; className?: string; status?: 'success' | 'error'; typography?: 'default' | 'default-bold'; } declare const TableStatusText: ({ text, className, status, typography, }: TableStatusTextProps) => React.JSX.Element; export default TableStatusText; //# sourceMappingURL=TableStatusText.d.ts.map