import { SystemIconProps } from '@workday/canvas-kit-react/icon';
import { CanvasSystemIcon } from '@workday/design-assets-types';
export interface PillIconButtonProps extends Omit<SystemIconProps, 'icon'> {
    /**
     * The system icon rendered by the button
     * @default `xSmallIcon`
     */
    icon?: CanvasSystemIcon;
    /**
     * The aria label for the removable icon
     * @default 'remove'
     */
    'aria-label'?: string;
}
export declare const PillIconButton: import("@workday/canvas-kit-react/common").ElementComponentM<"button", PillIconButtonProps, {
    state: {
        id: string;
        maxWidth: string | number;
        disabled: boolean;
    };
    events: {};
}>;
//# sourceMappingURL=PillIconButton.d.ts.map