/**
 * Thanks to Angular Material for Icon part of this library : https://github.com/angular/components
 */
export declare interface TrustedHTML {
    __brand__: 'TrustedHTML';
}
export declare interface TrustedTypePolicyFactory {
    createPolicy(policyName: string, policyOptions: {
        createHTML?: (input: string) => string;
    }): TrustedTypePolicy;
}
export declare interface TrustedTypePolicy {
    createHTML(input: string): TrustedHTML;
}
export declare function trustedHTMLFromString(raw: string): TrustedHTML;
