interface IAPIType<CollectionType, ConfigurationType> {
    getPage(limit?: number, after?: string, properties?: string[], propertiesWithHistory?: string[], associations?: string[], archived?: boolean, _options?: ConfigurationType): Promise<CollectionType>;
}
interface ICollectionType<ObjectType> {
    results: ObjectType[];
}
export declare function getAll<ReturnType, ConfigurationType>(api: IAPIType<ICollectionType<ReturnType>, ConfigurationType>, limit?: number, after?: string, properties?: string[], propertiesWithHistory?: string[], associations?: string[], archived?: boolean): Promise<ReturnType[]>;
export {};
