import { type TBaseConfig, type TChainableClient } from "../../core/chainable";
type TGitHubClientConfig = TBaseConfig & {
    token?: string;
};
declare function createGitHubClient(config?: TGitHubClientConfig): TChainableClient;
export { createGitHubClient };
export type { TGitHubClientConfig, TChainableClient };
export type { TRequestOptions } from "../../core/chainable";
//# sourceMappingURL=github-client.d.ts.map