import React, { type JSX } from 'react'; import './index.scss'; export interface ButtonProps { type?: string; size?: 'medium' | 'big'; theme?: 'brand' | 'alt'; href?: string; className?: string; children?: React.ReactNode; dangerouslySetInnerHTML?: { __html: string; }; } export declare function Button(props: ButtonProps): JSX.Element;