import { createHapticImpact } from '../api/haptic'; export type MainButtonProps = { onClick?: () => void; text?: string; active?: boolean; progressVisible?: boolean; mandatory?: boolean; onMandatoryChange?: (mandatory: boolean) => void; hapticForce?: Parameters[0]; }; export declare function MainButton(props: MainButtonProps): any;