import { NewThemeFields } from '../../graphql/index.js'; import { MutationUpsertThemeArgs, NewTheme } from '../../types/index.js'; import { GraphqlClient } from '../graphql.client.js'; export declare class ThemeClient { private client; constructor(client: GraphqlClient); upsert(variables: MutationUpsertThemeArgs, fields?: NewThemeFields, accessToken?: string): Promise; }