import { Codegen, Context } from './internal/codegen'; import { GeneratedFile, Value } from '../sourcegen'; 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; }