import { OptionFlag } from '@oclif/core/lib/interfaces'; import { EasNonInteractiveAndJsonFlags } from './flags'; export declare const getPaginatedQueryOptions: (flags: Partial>) => PaginatedQueryOptions; export declare const getLimitFlagWithCustomValues: ({ defaultTo, limit, }: { defaultTo: number; limit: number; }) => OptionFlag; export declare const EasPaginatedQueryFlags: { offset: OptionFlag; limit: OptionFlag; }; export type PaginatedQueryOptions = { nonInteractive: boolean; json: boolean; limit?: number; offset: number; };