type LimitOptions<TRecord> = {
    count: number;
    records: Array<TRecord>;
};
/**
 * @description
 * Use this helper to take at most `count` records from the start of the record set.
 */
export declare const limit: <TRecord>(options: LimitOptions<TRecord>) => Array<TRecord>;
export {};
