import { LensState } from "@focuson/state";
import { CustomButtonType } from "./common";
export interface DeleteStateButtonProps<S, C> extends CustomButtonType {
    id: string;
    label: string;
    states: LensState<S, any, C>[];
    enabledBy?: string[][];
}
export declare function DeleteStateButton<S, C>({ id, label, states, buttonType, enabledBy }: DeleteStateButtonProps<S, C>): JSX.Element;
