import * as React from "react"; export interface BadgeButtonProps { appearance?: "default" | "success" | "primary" | "warning" | "danger" | "outline"; /** * Allows custom styling */ className?: string; onClick: (event?: React.SyntheticEvent) => void; /** * Tab index indicates if an element can be focused for more information see * https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex * browser default value for this is -1 */ tabIndex?: number; children: React.ReactNode[] | React.ReactNode; /** * Human-readable selector used for writing tests */ "data-cy"?: string; } declare const _default: ({ appearance, children, className, onClick, tabIndex, "data-cy": dataCy }: BadgeButtonProps) => React.JSX.Element; export default _default;