import { FunctionComponent, type MouseEventHandler } from 'react';
export interface RemoveButtonProps {
    removable?: boolean;
    onRemove?: MouseEventHandler<HTMLButtonElement>;
}
/**
 * Shared remove button component used by both horizontal and vertical layouts.
 * Renders a trash icon button when removable, or a spacer div otherwise.
 */
export declare const RemoveButton: FunctionComponent<RemoveButtonProps>;
//# sourceMappingURL=RemoveButton.d.ts.map