import { SourceLineCol, DirectoryFiles } from '@iteria-app/generator'; import { PageType } from '@iteria-app/graphql-lowcode'; export declare const getSourceFromElement: (el: HTMLElement) => SourceLineCol; export declare const getDataFromElement: (el: HTMLElement) => any; export declare const getChildrenComponents: (el: HTMLElement) => string[]; export declare const findReactIntlProviderId: () => number; export declare const findTypenameValue: () => any; export declare const getPageLangLocale: () => string | undefined; export declare const getColumnTitle: (el: HTMLElement) => HTMLElement; export declare const getRuntimeTemplateName: (templateNames: string[]) => string; export declare const getRuntimeComponent: (entityName: string) => DirectoryFiles[]; export declare const findIfComponentExistInDevtoolsTree: (component: string) => boolean; export declare const findOperationNameInUseQueryHook: () => string; export declare const getEntityNameFromReactDevTools: () => { entityName: string; pageType: PageType; generatedTemplateName: string; };