import { type Account } from '../../models/integrations/index.js'; import { type AdditionalDataHolder, type BaseRequestBuilder, type Parsable, type ParseNode, type RequestConfiguration, type RequestInformation, type RequestsMetadata, type SerializationWriter } from '@microsoft/kiota-abstractions'; /** * Creates a new instance of the appropriate class based on discriminator value * @param parseNode The parse node to use to read the discriminator value and create the object * @returns {GithubGetResponse} */ export declare function createGithubGetResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @returns {Record void>} */ export declare function deserializeIntoGithubGetResponse(githubGetResponse?: Partial | undefined): Record void>; export interface GithubGetResponse extends AdditionalDataHolder, Parsable { /** * The Accounts property */ accounts?: Account[] | null; /** * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. */ additionalData?: Record; } /** * Builds and executes requests for operations under /integration/github */ export interface GithubRequestBuilder extends BaseRequestBuilder { /** * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} */ get(requestConfiguration?: RequestConfiguration | undefined): Promise; /** * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ export declare function serializeGithubGetResponse(writer: SerializationWriter, githubGetResponse?: Partial | undefined | null): void; /** * Uri template for the request builder. */ export declare const GithubRequestBuilderUriTemplate = "{+baseurl}/integration/github"; /** * Metadata for all the requests in the request builder. */ export declare const GithubRequestBuilderRequestsMetadata: RequestsMetadata;