/** * Regular expression to identify valid organization names. */ export declare const VALID_ORG_NAME_REGEXP: string; /** Maximum allowed length for an organization name. */ export declare const ORG_NAME_MAX_LENGTH = 255; /** Maximum allowed length for an organization display name. */ export declare const ORG_DISPLAY_NAME_MAX_LENGTH = 255; /** Returns the URL path to an organization's public profile */ export declare function orgURL(name: string): string; //# sourceMappingURL=index.d.ts.map