import { BoxProps, CompoundStylesApiProps, Factory } from '@mantine/core';
import { LastUpdatedProps } from '../../LastUpdated/LastUpdated.js';
export type TableLastUpdatedStylesNames = 'lastUpdatedRoot' | 'lastUpdatedLabel';
export interface TableLastUpdatedProps extends BoxProps, CompoundStylesApiProps<TableLastUpdatedFactory>, Pick<LastUpdatedProps, 'label'> {
}
export type TableLastUpdatedFactory = Factory<{
    props: TableLastUpdatedProps;
    ref: HTMLDivElement;
    stylesNames: TableLastUpdatedStylesNames;
    compound: true;
}>;
export declare const TableLastUpdated: import("@mantine/core").MantineComponent<{
    props: TableLastUpdatedProps;
    ref: HTMLDivElement;
    stylesNames: TableLastUpdatedStylesNames;
    compound: true;
}>;
//# sourceMappingURL=TableLastUpdated.d.ts.map