import { InlineAdvField } from "../field"; import { resourceIdentifier, checkValid, prepareQueue, toJson } from "../symbols"; import { SMap, ResourceError } from "../general"; import { stackPreparable } from "../stackBackend"; import { CustomParameters } from "./resource"; import { pathItem } from "../path"; export declare class customBlock extends InlineAdvField { [resourceIdentifier]: string; private _; private handler; private proxy; constructor(); [checkValid](): SMap; [prepareQueue](stack: stackPreparable, path: pathItem, ref: boolean): void; [toJson](): SMap; } export type CustomBlock = customBlock & CustomParameters;