import { Node, SupportedKind } from './node'; export declare const parse: (ast_: string, options?: { /** * The type of the type we're looking for * e.g. 'InterfaceDeclaration' */ searchType?: SupportedKind; /** * The name of the type we;re looking for * e.g. 'Options' */ searchName?: string; }) => Node[]; export declare const convertToNode: (property: any, path: string) => Node;