import type { WithNormalizedProps } from "../../global";
static interface ChipInput extends Omit<Marko.HTML.Span, `on${string}`> {
    renderBody?: Marko.Body;
    disabled?: Marko.HTML.Button["disabled"];
    "a11y-delete-button-text"?: Marko.HTMLAttributes["aria-label"];
    "on-delete"?: () => void;
}
export interface Input extends WithNormalizedProps<ChipInput> {
}
