import { AppLayoutProps } from './interfaces'; interface AppLayoutState { navigationOpen?: boolean; minContentWidth: number; maxContentWidth?: number | undefined; } export declare function applyDefaults(contentType: AppLayoutProps.ContentType, stateFromProps: Pick, isRefresh: boolean): AppLayoutState; export {};