import React from 'react'; import type { ButtonContainerProps } from './ButtonContainer'; export type ButtonTextWrapperProps = React.HTMLAttributes & { /** * If true, then expect SVG icon as children. The button will be rendered as icon button * Example: * ```tsx * * ``` ` */ readonly iconOnly?: ButtonContainerProps['iconOnly']; }; declare const _default: React.ForwardRefExoticComponent & { /** * If true, then expect SVG icon as children. The button will be rendered as icon button * Example: * ```tsx * * ``` ` */ readonly iconOnly?: boolean | undefined; } & React.RefAttributes>; export default _default;