import { PbBlockCategory, PbErrorResponse } from "../../../types"; export declare const PAGE_BLOCK_CATEGORY_BASE_FIELDS = "\n slug\n name\n icon\n description\n createdOn\n createdBy {\n id\n displayName\n }\n"; export declare const LIST_BLOCK_CATEGORIES: import("graphql").DocumentNode; /** * ########################### * Get Block Category Query Response */ export interface GetBlockCategoryQueryResponse { pageBuilder: { getBlockCategory: { data: PbBlockCategory | null; error: PbErrorResponse | null; }; }; } export interface GetBlockCategoryQueryVariables { slug: string; } export declare const GET_BLOCK_CATEGORY: import("graphql").DocumentNode; /** * ########################### * Create Block Category Mutation Response */ export interface CreateBlockCategoryMutationResponse { pageBuilder: { blockCategory: { data: PbBlockCategory | null; error: PbErrorResponse | null; }; }; } export interface CreateBlockCategoryMutationVariables { data: { name: string; slug: string; }; } export declare const CREATE_BLOCK_CATEGORY: import("graphql").DocumentNode; /** * ########################### * Update Block Category Mutation Response */ export interface UpdateBlockCategoryMutationResponse { pageBuilder: { blockCategory: { data: PbBlockCategory | null; error: PbErrorResponse | null; }; }; } export interface UpdateBlockCategoryMutationVariables { slug: string; data: { name: string; slug: string; }; } export declare const UPDATE_BLOCK_CATEGORY: import("graphql").DocumentNode; export declare const DELETE_BLOCK_CATEGORY: import("graphql").DocumentNode;