import { ActionBuildResult, ActionCustomMetadataV1 } from "../types"; /** * The builder for the actions. */ export declare class ActionBuilder { /** * Builds the actions from the custom metadata. * * @param customMetadata The custom metadata. * @returns The actions. * * @note This method is experimental and might change in the future. Also have nothing in common with Hasura 1.x. */ static buildV1(customMetadata: ActionCustomMetadataV1): ActionBuildResult; }