import { type Data } from '../../state/read-only-state'; import { MakeswiftClient } from '../../client'; import { type ApiRequest, ApiResponse } from '../request-response'; type TranslatableDataResult = { translatableData: Record; }; type TranslatableDataError = { message: string; }; export type TranslatableDataResponse = TranslatableDataResult | TranslatableDataError; export declare function translatableDataHandler(req: ApiRequest, { client }: { client: MakeswiftClient; }): Promise; export {}; //# sourceMappingURL=translatable-data.d.ts.map