export interface Options {
    petfinderApiKey: string;
    petfinderSecretKey: string;
}
declare const getAccessToken: (options: Options) => Promise<string>;
export default getAccessToken;
