import { PropsWithChildren, ReactElement } from 'react'; import { IconProps } from '../icons/generated'; export interface ButtonIcon extends IconProps { children: ReactElement; } export declare const ButtonIcon: ({ size, color, children }: PropsWithChildren) => ReactElement> | null;