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>; /** * Signal indicating if the Main Button is currently mounted. */ export declare const _isMounted: import('@telegram-apps/signals').Signal, isMounted: Computed; /** * Signal containing the current Main Button background color. */ export declare const backgroundColor: Computed<`#${string}`>; /** * Signal indicating if the Main Button has a shining effect. */ export declare const hasShineEffect: Computed; /** * Signal indicating if the Main Button is currently active and can be clicked. */ export declare const isEnabled: Computed; /** * Signal indicating if the Main Button displays a loader inside it. */ export declare const isLoaderVisible: Computed; /** * Signal indicating if the Main Button is currently visible. */ export declare const isVisible: Computed; /** * Signal containing the Main Button text. */ export declare const text: Computed; /** * Signal containing the current Main Button text color. */ export declare const textColor: Computed<`#${string}`>;