export type EditableDesignSystemPrefix = 'rapid' | 'zero'; /** * Base selectors treated as editable context regardless of design system. * Includes native controls, contenteditable, and ARIA-editable roles. */ export declare const BASE_EDITABLE_ELEMENT_SELECTORS: readonly ["input", "textarea", "select", "[contenteditable=\"true\"]", "[contenteditable=\"\"]", "[role=\"textbox\"]", "[role=\"searchbox\"]", "[role=\"combobox\"]"]; /** * Design-system specific editable host selectors. */ export declare const DESIGN_SYSTEM_EDITABLE_ELEMENT_SELECTORS: Record; export declare function buildEditableElementSelector(designSystems: readonly EditableDesignSystemPrefix[], customEditableSelectors?: readonly string[]): string; //# sourceMappingURL=editable-elements.d.ts.map