import React from 'react'; interface ComponentProps { /** Button text */ text: string; /** Background Color */ backgroundColor?: string; /** Font Color */ color?: string; /** Button Click Handle */ onClick: React.MouseEventHandler; /** If button is disabled */ disabled?: boolean; /** Text font size */ fontSize?: number | string; /** Button padding '0 13px 0 13px' format */ padding?: string; /** border radius */ borderRadius?: number; /** Component height */ height?: number; /** If text is bold */ bold?: boolean; /** The width of the button */ width?: string; } /** * Generic rounded button */ declare function RoundedButton({ text, backgroundColor, color, onClick, disabled, fontSize, padding, borderRadius, height, bold, width, }: ComponentProps): JSX.Element; export default RoundedButton;