import { ComponentType } from 'react'; type ChildProps = Props & { id?: string; }; export type WithIdProps = Props & { id: string; }; /** * @internal * @param {ReactNode} WrappedComponent */ export default function withId(WrappedComponent: ComponentType>): { (props: ChildProps): import("react").JSX.Element; displayName: string; }; export {}; //# sourceMappingURL=withId.d.ts.map