import { type SlotComponent } from "@1771technologies/lytenyte-core/yinternal";
export interface SortRemoveProps {
    readonly as?: SlotComponent<{
        onRemove: () => void;
    }>;
}
export declare const SortRemove: import("react").ForwardRefExoticComponent<Omit<import("react").ClassAttributes<HTMLButtonElement> & import("react").ButtonHTMLAttributes<HTMLButtonElement> & SortRemoveProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
