import { Theme } from '@mui/material';

type SurfaceVariation = 'default' | 'sunken' | 'raised' | 'overlay' | 'float';
type BorderRadius = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
declare const getBorderRadius: (theme: Theme, size: BorderRadius | undefined) => number | string;

export { getBorderRadius };
export type { BorderRadius, SurfaceVariation };
