import { Construct } from "constructs";
import { TechnicalAsset, Scope, CIATriad } from "..";
export interface BrowserProps {
    readonly description?: string;
    readonly scope: Scope;
    readonly owner?: string;
    readonly ciaTriad: CIATriad;
}
export declare class Browser extends TechnicalAsset {
    constructor(scope: Construct, id: string, props: BrowserProps);
}
