declare class WebAppConfirmationRequest {
    /**
    * The user returns to the web app after granting the permission. The HTTP request contains the code. Provide it here to confirm the web app installation.
    */
    'code'?: string;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export { WebAppConfirmationRequest };
