import type { AsyncStatus } from '../../../libs/cargo-hold-async'; import type { ILens } from '../../../libs/standard-lens'; import type { ReactNode } from 'react'; import React from 'react'; interface UseInstanceLoadingStateOptions { children?: ReactNode | undefined; instance: InstanceType | undefined; lens: ILens; } export declare const useChildrenWithLoadingState: ({ children, instance, lens, }: UseInstanceLoadingStateOptions) => React.ReactFragment; export {};