export declare class Pagination {
    static fromString(rawTake: string, rawSkip: string): {
        take: number;
        skip: number;
    };
}
