export interface ContainerParseResult {
    key: string;
    content: string;
}
export declare class Container {
    private static containers;
    private static parser;
    static compile(template: string): ContainerParseResult[];
    static compileFile(templatePath: string): ContainerParseResult[];
    static removeContainersFromTemplate(template: string): string;
    static clear(): void;
    static get(): ContainerParseResult[];
}
