import * as React from 'react'; import { ReactElement } from 'react'; import { IConfigurationsFlattenedKeys } from 'common'; interface IProps { policyKey: IConfigurationsFlattenedKeys; Child: React.FC<{ value: unknown; }>; childProps?: Record; showLoading?: boolean; skeletonProps?: Record; } export declare const WithPolicy: (props: IProps) => ReactElement; export {};