export interface ISecurityTrimer {
    [name: string]: any;
    content: JSX.Element;
    alternativeContent?: JSX.Element;
    roles: string[];
    excludedRoles?: string[];
    excludedRolesContent?: JSX.Element;
    clearCacheAndRetryIfUnauthorized?: boolean;
    contextParams?: {
        [key: string]: string | number;
    };
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface ElementAttributesProperty {
        }
        interface IntrinsicElements {
            "omfx-security-trimer": ISecurityTrimer;
        }
    }
}
