export default class FigmaDocumentParser { private document?; constructor(document?: DocumentNode | undefined); getId(): string; setDocumentNode(document: DocumentNode): void; protected getDocumentNode(): DocumentNode | undefined; getAllPages(): PageNode[]; static FindAll(node: SceneNode | any, matchFunction: (child: SceneNode) => boolean): SceneNode[]; getPageNode(pageId: string): PageNode; static FindChildren(node: SceneNode | any, matchFunction: (child: SceneNode) => boolean): SceneNode[]; static RemoveNode(root: BaseNode, nodeId: string): Promise; findAll: typeof FigmaDocumentParser.FindAll; findChildren: typeof FigmaDocumentParser.FindChildren; }