import { RequestOptions } from 'https';
export interface IExpandShortUrlOptions extends RequestOptions {
    timeout: number;
    maxRedirects: number;
}
export declare const expand: (url: string, options?: Partial<IExpandShortUrlOptions>) => Promise<string>;
