/** @see {@link https://bungie-net.github.io/#/components/schemas/Applications.OAuthApplicationType} */
export declare const OAuthApplicationType: {
    readonly None: 0;
    /**
     * Indicates the application is server based and can keep its secrets from end
     * users and other potential snoops.
     */
    readonly Confidential: 1;
    /**
     * Indicates the application runs in a public place, and it can't be trusted to
     * keep a secret.
     */
    readonly Public: 2;
};
