import type { FndI18nEntry, Schema, WrappedSchema } from "@raytio/types"; /** * This is the main function to transform a schema from * the JSON that the API returns, into a `Schema` object that's useful * to the client. */ export declare function expandSchema(wrappedSchema: WrappedSchema, allUnexpandedSchemas: WrappedSchema[], userLocales: readonly string[], fndI18nEntries?: FndI18nEntry[]): Schema;