import { ReactNode } from 'react'; import { AriaProps, BaseComponentProps } from '../types'; export interface RootDomAttributeProps extends Pick, Partial { } type PickableProps = RootDomAttributeProps & { children?: ReactNode; }; /** * Extracts root DOM attributes (`id`, `data-testid`, `className`, `style`, common `aria-*`, `role`) * from component props so they can be applied to the outermost interactive element. */ export declare function pickRootDomAttributes(props: T): { root: RootDomAttributeProps; rest: Omit; }; export {}; //# sourceMappingURL=pickRootDomAttributes.d.ts.map