export interface PrivacyClassInterface {
    privacy: Privacy;
}
export declare enum Privacy {
    Public = "public",
    Private = "private"
}
