import { CSSProperties } from "react"; import { Theme } from "./types"; /** * Returns the modal border radius based on device type * Mobile devices: 0 * Desktop/Laptop: 24 */ export declare const getBorderRadius: () => number; export declare const screenSizes: { id: string; size: number; }[]; /** * When the width is smaller than * */ export declare const minWidthMatcher: () => string; export declare const containerStyle: CSSProperties; export declare const containerMediaStyles: { [id: string]: CSSProperties; }; export declare const appWrapperStyle: CSSProperties; export declare const getModalStyle: (theme?: Theme) => CSSProperties; /** * Default light-mode modal style retained as a named export so existing * imports keep compiling. Prefer `getModalStyle(theme)` in render paths * that have the resolved theme available. */ export declare const modalStyle: CSSProperties; export declare const iframeWrapperStyle: CSSProperties; export declare const iframeStyle: CSSProperties;