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