export declare namespace OrdersStatic { interface OrderSmall { id: number; document_nr: string; title?: string; contact_id: number; contact_sub_id?: number; user_id: number; project_id?: number; logopaper_id: number; language_id: number; bank_account_id: number; currency_id: number; payment_type_id: number; header: string; footer: string; total_gross: string; total_net: string; total_taxes: string; total: string; mwst_type: number; mwst_is_net: boolean; show_position_taxes: boolean; is_valid_from: string; contact_address: string; delivery_address_type: number; delivery_address: string; kb_item_status_id: number; is_recurring: boolean; api_reference?: string; viewed_by_client_at?: string; updated_at: string; taxs: Tax[]; network_link: string; } interface Tax { percentage: number; value: string; } interface OrderFull extends OrderSmall { positions: Array; } interface OrderCreate { user_id: number; contact_id: number; positions: Array; logopaper_id: number; language_id: number; bank_account_id: number; currency_id: number; mwst_type: number; nb_decimals_amount: number; nb_decimals_price: number; is_valid_from: number; is_compact_view: boolean; show_position_taxes: boolean; payment_type_id: number; } interface PositionCreate { type: "KbPositionCustom" | "KbPositionArticle"; unit_price: string; tax_id: number; amount: string; text?: string; discount_in_percent?: number; unit_id?: number; is_optional: boolean; } interface CustomPositionCreate extends PositionCreate { } interface CustomPosition extends Position { } interface ArticlePositionCreate extends PositionCreate { type: "KbPositionArticle"; article_id: number; } interface ArticlePosition extends Position { type: "KbPositionArticle"; article_id: number; } interface Position { id: number; type: "KbPositionArticle" | "KbPositionCustom"; amount: string; unit_id?: number; account_id: number; unit_name?: string; tax_id: number; tax_value: string; text: string; unit_price: string; discount_in_percent?: string; position_total: string; pos: string; internal_pos: number; parent_id?: number; is_optional: boolean; article_id: number; } enum OrderSearchParameters { id = "id", kb_item_status_id = "kb_item_status_id", document_nr = "document_nr", title = "title", contact_id = "contact_id", contact_sub_id = "contact_sub_id", user_id = "user_id", currency_id = "currency_id", total_gross = "total_gross", total_net = "total_net", total = "total", is_valid_from = "is_valid_from", is_valid_to = "is_valid_to", is_valid_until = "is_valid_until", updated_at = "updated_at" } }