/** * Border radius tokens. * * Base radius of 4px matches the Figma swatch / control corner radius. * Larger steps (8/12/24) match cards, popovers and hero containers. */ export declare const radius: { readonly none: 0; readonly sm: 4; readonly md: 8; readonly lg: 12; readonly xl: 24; readonly pill: 9999; }; /** Default component radius used by the MUI theme `shape.borderRadius`. */ export declare const baseRadius: 4; export type RadiusToken = keyof typeof radius;