import { ButtonSizes } from '../types';
import { SystemIconProps } from '@workday/canvas-kit-react/icon';
export interface ButtonLabelIconProps extends Partial<SystemIconProps> {
    /**
     * There are four button sizes: `extraSmall`, `small`, `medium`, and `large`.
     *
     * @default 'medium'
     */
    size?: ButtonSizes;
    /**
     * If set to `true`, transform the icon's x-axis to mirror the graphic
     * @default false
     */
    shouldMirrorIcon?: boolean;
}
export declare const ButtonLabelIcon: import("@workday/canvas-kit-react/common").ElementComponent<"span", ButtonLabelIconProps>;
//# sourceMappingURL=ButtonLabelIcon.d.ts.map