import * as _sinclair_typebox7631 from "@sinclair/typebox";
import { Static } from "@sinclair/typebox";

//#region src/shared/datarecords/external/airtable/oauth/config.d.ts
declare const airtableOAuthTokenSchema: _sinclair_typebox7631.TObject<{
  scope: _sinclair_typebox7631.TString;
  token_type: _sinclair_typebox7631.TString;
  expires_in: _sinclair_typebox7631.TNumber;
  access_token: _sinclair_typebox7631.TString;
  refresh_token: _sinclair_typebox7631.TString;
  refresh_expires_in: _sinclair_typebox7631.TNumber;
}>;
type AirtableOAuthToken = Static<typeof airtableOAuthTokenSchema>;
//#endregion
export { AirtableOAuthToken, airtableOAuthTokenSchema };
//# sourceMappingURL=config.d.ts.map