/// <reference types="react" />
/**
 * A Higher Order Component used to be provide a unique instance ID by
 * component.
 */
declare const withInstanceId: <InnerProps extends {
    instanceId: string | number;
}>(Inner: import("react").ComponentType<InnerProps>) => import("react").ComponentType<Omit<InnerProps, "instanceId">>;
export default withInstanceId;
//# sourceMappingURL=index.d.ts.map