import { StaysSummaryProps } from "./StaysSummary";
declare const CUSTOM_ELEMENT_TAG = "duffel-stays-summary";
type CustomElementRenderArguments = StaysSummaryProps;
declare global {
    namespace JSX {
        interface IntrinsicElements {
            [CUSTOM_ELEMENT_TAG]: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
        }
    }
}
export declare function renderDuffelStaysSummaryCustomElement(props: CustomElementRenderArguments): void;
export {};
