import type { AriaLabelingProps } from "../types.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; } & AriaLabelingProps, options?: Options): { id?: string; } & AriaLabelingProps; export {};