import { default as React } from 'react'; import { Button } from './button'; export type ClearButtonProps = Omit, "children" | "type"> & { /** Button copy. Defaults to "Clear all". */ label?: React.ReactNode; }; /** * Destructive-hover text button for clearing a selection. Neutral at rest and * turns destructive on hover/focus/active so the clearing intent reads before * the click without shouting for attention. */ export declare function ClearButton({ className, label, ...props }: ClearButtonProps): React.JSX.Element; //# sourceMappingURL=clear-button.d.ts.map