@duffel/components 3.3.1--canary.4 → 3.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,7 +3,6 @@ import * as React from "react";
3
3
  import { StaysRoomRate } from "@duffel/api/types";
4
4
  export interface StaysRoomRateCardProps {
5
5
  rate: StaysRoomRate;
6
- showPotentialCommission?: boolean;
7
6
  searchNumberOfRooms: number;
8
7
  numberOfNights: number;
9
8
  selected: boolean;
@@ -1,6 +1,6 @@
1
1
  import * as React from "react";
2
- export interface RadioButtonProps<T extends string | number> {
3
- value: T;
2
+ export interface RadioButtonProps {
3
+ value: string;
4
4
  checked?: boolean;
5
5
  }
6
- export declare const RadioButton: React.FC<RadioButtonProps<any>>;
6
+ export declare const RadioButton: React.FC<RadioButtonProps>;
@@ -0,0 +1,7 @@
1
+ import * as React from "react";
2
+ export declare const hrefToComponentStyles: string;
3
+ type WithComponentStylesProps = {
4
+ children?: React.ReactNode;
5
+ };
6
+ export declare const WithComponentStyles: React.FC<WithComponentStylesProps>;
7
+ export {};