import { Computed } from '@telegram-apps/signals'; import { State } from './types.js'; export declare const internalState: import('@telegram-apps/signals').Signal; /** * Complete component state. */ export declare const state: Computed>; /** * True if the component is currently mounted. */ export declare const _isMounted: import('@telegram-apps/signals').Signal, isMounted: Computed; /** * @see State.backgroundColor */ export declare const backgroundColor: Computed<`#${string}`>; /** * @see State.hasShineEffect */ export declare const hasShineEffect: Computed; /** * @see State.isEnabled */ export declare const isEnabled: Computed; /** * @see State.isLoaderVisible */ export declare const isLoaderVisible: Computed; /** * @see State.isVisible */ export declare const isVisible: Computed; /** * @see State.position */ export declare const position: Computed; /** * @see State.text */ export declare const text: Computed; /** * @see State.textColor */ export declare const textColor: Computed<`#${string}`>;