/**
 * @file InputClearButton.tsx
 * @input Uses React, Button, Icon
 * @output Exports InputClearButton shared clear button for input components
 * @position Shared primitive; used by Typeahead, Tokenizer, TextInput
 */
import type { ReactNode } from 'react';
import * as stylex from '@stylexjs/stylex';
export interface InputClearButtonProps {
    label: string;
    onClick: (e: React.MouseEvent<HTMLButtonElement>) => void;
    xstyle?: stylex.StyleXStyles;
}
export declare function InputClearButton({ label, onClick, xstyle, }: InputClearButtonProps): ReactNode;
export declare namespace InputClearButton {
    var displayName: string;
}
//# sourceMappingURL=InputClearButton.d.ts.map