import type { FunctionComponent, ReactNode } from 'react';
import { type IconicNames, type IconicTypes } from '../../atoms/Icons';
export declare const ButtonContent: FunctionComponent<{
    showLabel: boolean;
    label?: string;
    children?: ReactNode;
    icon?: IconicNames;
    iconType?: IconicTypes;
}>;
