import { JSX } from 'react';

type TebutoBookingWidgetConfiguration = {
    therapistUUID: string;
    backgroundColor?: string;
    categories?: number[];
    border?: boolean;
};

type TebutoBookingWidgetProps = {
    noScriptText?: string;
} & TebutoBookingWidgetConfiguration;
declare function TebutoBookingWidget({ noScriptText, ...config }: TebutoBookingWidgetProps): JSX.Element;

export { TebutoBookingWidget };
export type { TebutoBookingWidgetConfiguration };
