import type { ReactNode } from 'react'; import type { IconProps } from '../Icon'; type IconPosition = 'right' | 'left' | undefined; export interface ButtonContentProps { children?: ReactNode; icon?: IconProps['name']; iconPosition?: IconPosition; } /** * ButtonContent * Shared with every all types of buttons * * @param icon * @param iconPosition * @param children * @constructor */ export declare function ButtonContent({ icon, iconPosition, children }: ButtonContentProps): ReactNode; export {}; //# sourceMappingURL=ButtonContent.d.ts.map