import type { Action } from "./Action"; import { FontStyle } from "./FontStyle"; export interface StateProps { image: string; multiActionImage?: string; name?: string; title?: string; showTitle?: boolean; fontSize?: number; align?: "top" | "bottom" | "middle"; underline?: boolean; fontStyle?: FontStyle; titleColor?: string; } export declare class State { showTitle: boolean; name: string; title: string; image: string; multiActionImage: string; fontSize: number; align?: string; action: Action; underline?: boolean; fontStyle?: FontStyle; titleColor?: string; constructor(params: StateProps & { action: Action; }); toManifest(): Record; }