/**
 * Templates for generating React service context
 */
export interface DomainInfo {
    name: string;
    capitalizedName: string;
}
/**
 * Generate empty service context template
 */
export declare const getEmptyServiceContextTemplate: () => string;
/**
 * Generate service context template with domains
 */
export declare const getServiceContextTemplate: (domains: DomainInfo[]) => string;
/**
 * Generate test template for service context
 */
export declare const getServiceContextTestTemplate: (domains: DomainInfo[]) => string;
//# sourceMappingURL=context.d.ts.map