import { MouseEvent, ReactNode } from 'react'; interface Props { 'aria-describedby'?: string; 'aria-label'?: string; 'aria-labelledby'?: string; children?: ReactNode; className?: string; nodeType?: 'button' | 'input'; onClick?: (event?: MouseEvent) => void; outline?: boolean; overrideClassName?: boolean; style?: object; type?: 'button' | 'reset' | 'submit'; } /** * Button * @prop {string} [aria-describedby] aria-describedby attribute value * @prop {string} [aria-label] aria-label attribute value * @prop {string} [aria-labelledby] aria-labelledby attribute value * @prop {ReactNode} [children] React component children * @prop {string} [className] CSS class attribute value to append to default value * @prop {'button'|'input'} [nodeType='button'] Determine if button is button or input element * @prop {(event?: MouseEvent) => void} [onClick] Function to run when click event is triggered * @prop {boolean} [outline] Set outline style if true * @prop {boolean} [overrideClassName] Override default class attribute values if true * @prop {object} [style] Style attribute value * @prop {('button' | 'reset' | 'submit')} [type='button'] HTML type attribute */ declare const Btn: ({ "aria-describedby": ariaDescribedBy, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledBy, children, className, nodeType, onClick, overrideClassName, outline, style, type, }: Props) => JSX.Element; export default Btn;