import { BoxProps, CompoundStylesApiProps, Factory } from '@mantine/core';
export type TableLastUpdatedStylesNames = 'lastUpdatedRoot' | 'lastUpdatedLabel';
export interface TableLastUpdatedProps extends BoxProps, CompoundStylesApiProps<TableLastUpdatedFactory> {
    /**
     * Label to contextualize the date
     *
     * @default "Last update:"
     */
    label?: string;
}
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