UNPKG

@gravity-ui/uikit

Version:

Gravity UI base styling and components

18 lines (17 loc) 480 B
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<string>; } export declare function filterDOMProps(props: { id?: string; } & AriaLabelingProps, options?: Options): { id?: string; } & AriaLabelingProps; export {};