import type { AccessibilityProps } from "../types/index.js"; interface Options { /** * If labelling associated aria properties should be included in the filter. */ labelable?: boolean; /** * A Set of other property names that should be included in the filter. */ propNames?: Set; } export declare function filterDOMProps(props: { id?: string; } & AccessibilityProps, options?: Options): { id?: string; } & AccessibilityProps; export {};