import { Codegen, Context } from './internal/codegen/index.js'; import { GeneratedFile, Value } from '../sourcegen/index.js'; export interface StatusPageServiceResource { id: string; name: string; } export declare function valueForStatusPageServiceFromId(genfile: GeneratedFile, physicalId: string): Value; export declare class StatusPageServiceCodegen extends Codegen { describe(resource: StatusPageServiceResource): string; prepare(logicalId: string, resource: StatusPageServiceResource, context: Context): void; gencode(logicalId: string, resource: StatusPageServiceResource, context: Context): void; }