export declare type GetTranslationsResponseType = {
    success: boolean;
    data?: Record<string, unknown>;
    message?: string;
};
export declare const getTranslationsForPageProps: (pageProps: Record<string, string | undefined>) => Promise<Record<string, unknown>>;
