import { Check } from '../types/Check';
export interface GetCheckOptions {
    /**
     * Include performance metrics for the last hour
     */
    metrics?: boolean;
}
export declare function getCheck(apiKey: string, token: string, options?: GetCheckOptions): Promise<Check>;
