import type { LayoutStyle } from './layoutStyle'; export interface LayoutRadius { sm: string; base: string; md: string; full: string; type: string; } export declare function getLayoutRadius(layoutStyle: LayoutStyle): { sm: string; base: string; md: string; full: string; type: string; };