import { IAutoBeTestCompiler, IAutoBeTestValidateProps, IAutoBeTestWriteProps, IAutoBeTypeScriptCompileProps, IAutoBeTypeScriptCompileResult } from "@autobe/interface"; import { IValidation } from "typia"; export declare class AutoBeTestCompiler implements IAutoBeTestCompiler { compile(props: IAutoBeTypeScriptCompileProps): Promise; validate(props: IAutoBeTestValidateProps): Promise; write(props: IAutoBeTestWriteProps): Promise; getExternal(): Promise>; getDefaultTypes(): Promise>; }