import { ButtonColor, ButtonVariant, ButtonSize } from '../types'; import { IGlobalAttributes, IParent, ICustomizable } from '../../core'; export interface CommonRoundButtonProps extends IGlobalAttributes, IParent, ICustomizable { /** * `Red` is DEPRECATED */ color?: ButtonColor.Brand | ButtonColor.Gray | ButtonColor.Red; variant?: ButtonVariant; size?: ButtonSize.XSmall | ButtonSize.Small | ButtonSize.Medium | ButtonSize.Large | ButtonSize.XLarge | ButtonSize.XXLarge; stretch?: boolean; animated?: boolean; disableThemes?: boolean; iconOnly?: boolean; endIcon?: string; } export declare function getButtonClasses(styles: Record, props: CommonRoundButtonProps): string;