export declare function useTranslation(): { t: T; td: (crudDefinitions: ICrudDefinitions) => Json; tn: (key: string, count: number) => string; tj: (json: Json) => Json; }; export type T = (key: string) => string; export type TN = (key: string, count: number) => string; export type TJ = (json: Json) => Json; export type TD = (crudDefinitions: ICrudDefinitions) => ICrudDefinitions; export declare const emptyT: T; export declare const emptyTN: TN; export declare const emptyTJ: TJ; export declare const emptyTD: TD;