import { FC } from 'react';
export interface RegistryProps {
    isShowChildrenRegistry?: boolean;
    label: string;
    setShowChildrenRegistry: (x: any) => void;
}
export declare const Registry: FC<RegistryProps>;
