/** * Modify postinstall script everytime you change those. * A bit of manual work, but types won't work otherwise. * @link web/src/__scripts__/postinstall.ts */ export declare const templateFunctions: { formatDateTime: (date: Date | string, options?: import("@aeria-ui/utils").DateFormatOptions) => string; getRelativeTimeFromNow: (target: any) => string | undefined; hasRoles: (roles: string | string[]) => boolean; t: (text: string | undefined, options?: import("@aeria-ui/i18n").TextOptions, i18n?: import("@aeria-ui/i18n").GlobalI18n) => string; }; export type TemplateFunctions = typeof templateFunctions;