import React from 'react';
import { ButtonProps } from "../../mantine/button";
import { LocaleType } from "../../../interfaces/types";
export type Props = {
    bookingId?: string;
    bookingType?: string;
    label?: string;
    locale?: LocaleType;
} & ButtonProps;
declare const BookingBtn: ({ label, bookingId, bookingType, locale, ...rest }: Props) => React.JSX.Element;
export { BookingBtn };
