import { type InjectionKey } from 'vue'; /** * The layout of the client * * @default 'desktop' */ export type ClientLayout = 'modal' | 'web' | 'desktop'; export declare const LAYOUT_SYMBOL: InjectionKey; /** * Get the current client layout * * @see {@link createApiClient} */ export declare const useLayout: () => { layout: ClientLayout; }; //# sourceMappingURL=useLayout.d.ts.map