import * as Types from './types.js';
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
export type ThemePublishMutationVariables = Types.Exact<{
    id: Types.Scalars['ID']['input'];
}>;
export type ThemePublishMutation = {
    themePublish?: {
        theme?: {
            id: string;
            name: string;
            role: Types.ThemeRole;
        } | null;
        userErrors: {
            field?: string[] | null;
            message: string;
        }[];
    } | null;
};
export declare const ThemePublish: DocumentNode<ThemePublishMutation, ThemePublishMutationVariables>;
