export declare const SymbolVisibility: {
    readonly VISIBILITY_UNSET: "VISIBILITY_UNSET";
    readonly VISIBILITY_LOCAL: "VISIBILITY_LOCAL";
    readonly VISIBILITY_EXPORT: "VISIBILITY_EXPORT";
};
export type SymbolVisibility = 'VISIBILITY_UNSET' | 0 | 'VISIBILITY_LOCAL' | 1 | 'VISIBILITY_EXPORT' | 2;
export type SymbolVisibility__Output = typeof SymbolVisibility[keyof typeof SymbolVisibility];
