import { DataApi } from '../../fmdapi/src.js'; import { TSchema, ValueListsOptions } from './types.js'; export declare const getLayoutMetadata: (args: { client: ReturnType; valueLists?: ValueListsOptions; }) => Promise<{ schema: TSchema[]; portalSchema: { schemaName: string; schema: TSchema[]; }[]; valueLists: { name: string; values: string[]; }[]; } | undefined>;