@duffel/components
Version:
Component library to build your travel product with Duffel.
13 lines (12 loc) • 493 B
TypeScript
import { StaysAmenitiesProps } from "./StaysAmenities";
declare const CUSTOM_ELEMENT_TAG = "duffel-stays-amenities";
type CustomElementRenderArguments = StaysAmenitiesProps;
declare global {
namespace JSX {
interface IntrinsicElements {
[CUSTOM_ELEMENT_TAG]: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
}
}
}
export declare function renderDuffelStaysAmenitiesCustomElement(props: CustomElementRenderArguments): void;
export {};