@duffel/components
Version:
Component library to build your travel product with Duffel.
123 lines (122 loc) • 4.36 kB
TypeScript
import { StaysCancellationTimelineProps } from "../components/Stays/StaysCancellationTimeline/StaysCancellationTimeline";
declare const _default: import("@storybook/csf").ComponentAnnotations<import("@storybook/react/dist/types-a5624094").R, import("@storybook/csf").Args>;
export default _default;
export declare const FullAndPartialRefundable: {
render: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/dist/types-a5624094").R, StaysCancellationTimelineProps>;
args: {
cancellationTimeline: {
refund_amount: string;
currency: string;
before: string;
}[];
totalAmount: string;
checkInDate: string;
bookingDate: string;
};
};
export declare const FullAndPartialRefundableWithCheckInTime: {
render: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/dist/types-a5624094").R, StaysCancellationTimelineProps>;
args: {
cancellationTimeline: {
refund_amount: string;
currency: string;
before: string;
}[];
totalAmount: string;
checkInDate: string;
checkInAfterTime: string;
bookingDate: string;
};
};
export declare const FullRefundableOnly: {
render: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/dist/types-a5624094").R, StaysCancellationTimelineProps>;
args: {
cancellationTimeline: {
refund_amount: string;
currency: string;
before: string;
}[];
totalAmount: string;
checkInDate: string;
bookingDate: string;
};
};
export declare const NotRefundable: {
render: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/dist/types-a5624094").R, StaysCancellationTimelineProps>;
args: {
cancellationTimeline: never[];
bookingDate: string;
};
};
export declare const PartialRefundableDeposit: {
render: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/dist/types-a5624094").R, StaysCancellationTimelineProps>;
args: {
cancellationTimeline: {
refund_amount: string;
currency: string;
before: string;
}[];
totalAmount: string;
checkInDate: string;
bookingDate: string;
paymentType: string;
};
};
export declare const FullRefundableOnlyDeposit: {
render: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/dist/types-a5624094").R, StaysCancellationTimelineProps>;
args: {
cancellationTimeline: {
refund_amount: string;
currency: string;
before: string;
}[];
totalAmount: string;
checkInDate: string;
bookingDate: string;
paymentType: string;
};
};
export declare const NotRefundableDeposit: {
render: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/dist/types-a5624094").R, StaysCancellationTimelineProps>;
args: {
cancellationTimeline: never[];
bookingDate: string;
paymentType: string;
};
};
export declare const PartialRefundableGuarantee: {
render: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/dist/types-a5624094").R, StaysCancellationTimelineProps>;
args: {
cancellationTimeline: {
refund_amount: string;
currency: string;
before: string;
}[];
totalAmount: string;
checkInDate: string;
bookingDate: string;
paymentType: string;
};
};
export declare const FullRefundableOnlyGuarantee: {
render: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/dist/types-a5624094").R, StaysCancellationTimelineProps>;
args: {
cancellationTimeline: {
refund_amount: string;
currency: string;
before: string;
}[];
totalAmount: string;
checkInDate: string;
bookingDate: string;
paymentType: string;
};
};
export declare const NotRefundableGuarantee: {
render: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/dist/types-a5624094").R, StaysCancellationTimelineProps>;
args: {
cancellationTimeline: never[];
bookingDate: string;
paymentType: string;
};
};