import { Downtime } from '../types/Downtime';
export interface GetDowntimesOptions {
    /**
     * The page to fetch (100 results per page)
     */
    page?: number;
}
export declare function getDowntimes(apiKey: string, token: string, options?: GetDowntimesOptions): Promise<Downtime[]>;
