import { CommonTheme, ThemeFromFn } from '../../theming'; export declare const circleButtonTheme: (theme: CommonTheme) => [string, { background: string; border: { color: string; radius: string; style: string; width: string; }; color: string; description: { fontWeight: string; size: string; }; disabled: { background: string; color: string; }; margin: { narrow: string; normal: string; wide: string; }; rounded: string; selected: { background: string; color: string; iconColor: string; }; size: { small: string; medium: string; large: string; xl: string; }; spacing: { none: string; narrow: string; normal: string; wide: string; }; title: { color: string; fontWeight: string; size: { small: string; medium: string; large: string; xl: string; }; textAlign: string; textTransform: string; }; transition: string; }]; export declare type CircleButtonTheme = ThemeFromFn;