import { stringMap } from '../../../shared/types/base'; type profileAction = { [s: string]: string[]; }; export interface profileDefinition { [s: string]: stringMap; } export interface profileInterface { comments: string; definitions: profileDefinition; actions?: profileAction; } export declare function isProfile(obj: any): obj is profileInterface; export declare function defaultGetPreprocessorString(profileKey: string | undefined, profileContainer: profileInterface): string; export declare const defaultGetPreprocessorContainer: (profileKey: string | undefined, profileContainer: profileInterface) => [stringMap, undefined | string[]]; export {};