export type TranslateParams = { text: string; fromLanguage?: string; toLanguage: string; provider?: string; }; export declare class TranslationAction { static translate: (params: TranslateParams) => Promise; }