/** * Screen Layout Configuration */ export interface ScreenLayoutConfig { readonly maxContentWidth: number | undefined; readonly horizontalPadding: number; readonly verticalPadding: number; readonly spacingMultiplier: number; } export declare const getScreenLayoutConfig: (insets?: { left?: number; right?: number; top?: number; bottom?: number; }) => ScreenLayoutConfig;