export interface HubspotPayloadInput {
    project?: string;
    profile?: {
        email?: string;
        firstName?: string;
        lastName?: string;
        phone?: string;
        street?: string;
        stNumber?: string;
        postcode?: string;
        location?: string;
    };
    order?: any[];
    colors?: {
        label: string;
        name: string;
    }[];
    totalPrice?: number;
    comment?: string;
}
export declare function buildConfigurationPayload(input: HubspotPayloadInput): {
    config_id: string;
    contact: {
        email: string;
        firstname: string;
        lastname: string;
        phone: string;
        address: string;
        zip: string;
        city: string;
        country: string;
    };
    deal: {
        name: string;
        amount_chf: number;
    };
    quote: {
        title: string;
        language: string;
        currency: string;
        comments_to_buyer: string;
    };
    line_items: any[];
};
export declare function addDays(days: number): string;
