import { CheckConfigDefaults } from '../services/checkly-config-loader'; import { Construct } from './construct'; import { Diagnostics } from './diagnostics'; /** * Creates a reference to an existing Check Group (both v1 and v2). * * References link existing resources to a project without managing them. * * Use {@link CheckGroupV2.fromId()} instead of instantiating this class directly. */ export declare class CheckGroupRef extends Construct { constructor(logicalId: string, physicalId: number); describe(): string; validate(diagnostics: Diagnostics): Promise; getCheckDefaults(): CheckConfigDefaults; getBrowserCheckDefaults(): CheckConfigDefaults; getMultiStepCheckDefaults(): CheckConfigDefaults; allowInChecklyConfig(): boolean; synthesize(): null; }