import { FunctionComponent, ReactNode } from 'react';
import { IconicNames, IconicTypes } from '@clubmed/trident-icons';
export type ButtonContentProps = {
    /**
     * @deprecated
     */
    showLabel?: boolean;
    /**
     * @deprecated
     */
    label?: string;
    children?: ReactNode;
    icon?: IconicNames;
    iconType?: IconicTypes;
    iconWidth?: string;
};
export declare const ButtonContent: FunctionComponent<ButtonContentProps>;
