export declare namespace BaseStatic { interface PdfResponse { name: string; size: number; mime: string; content: Buffer; } type SearchCriteria = "=" | "!=" | ">" | "<" | ">=" | "<=" | "equal" | "not_equal" | "greater_than" | "less_than" | "greater_equal" | "less_equal" | "like" | "not_like" | "is_null" | "not_null" | "in" | "not_in"; interface SearchParameter { field: T; value: any; criteria?: SearchCriteria; } interface BaseOptions { limit?: number; offset?: number; order_by?: string; [index: string]: any; } }