/** @jsxImportSource @emotion/react */ import React from 'react'; interface ButtonProps { id?: string; disabled?: boolean; title?: string; dataTestId?: string; onClick?: () => void; style?: React.CSSProperties; variant?: 'primary' | 'secondary' | 'outlined' | 'text'; type?: 'button' | 'submit' | 'reset'; } declare function Button({ dataTestId, disabled, title, onClick, id, variant, type, }: ButtonProps): import("@emotion/react/jsx-runtime").JSX.Element; export default Button;