import React from 'react'; import { Box } from '../Box'; declare type OrderNowButtonProps = React.ComponentProps & { label: string; value: string; onPress: () => void; disabled?: boolean; }; /** * @label Button title * @value Button total * @onPress Called when the touch is released, but not if cancelled * @see https://zeroheight.com/502cb86ad/p/281e3e-buttons/t/943b4d */ export declare const OrderNowButton: ({ label, value, onPress, disabled, ...props }: OrderNowButtonProps) => JSX.Element; export {};