/**
 * Common types and interfaces used throughout the Digital Samba API
 *
 * @module types/common
 */
export interface PaginationParams {
    limit?: number;
    offset?: number;
    order?: "asc" | "desc";
    after?: string;
}
export interface DateRangeParams {
    date_start?: string;
    date_end?: string;
}
export interface ApiResponse<T> {
    data: T[];
    total_count: string | number;
    length: number;
    map: <U>(callback: (value: T, index: number, array: T[]) => U) => U[];
}
//# sourceMappingURL=common.d.ts.map