import { Translation, GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link CustomPhrase} for the original type. */ export type CreateCustomPhrase = { tenantId?: string; id: string; languageTag: string; translation: Translation; }; export type CustomPhrase = { tenantId: string; id: string; languageTag: string; translation: Translation; }; export type CustomPhraseKeys = 'tenantId' | 'id' | 'languageTag' | 'translation'; export declare const CustomPhrases: GeneratedSchema;