export interface IDownOptions {
    name?: string;
    suffix?: string;
    pixelRatio?: number;
    backgroundColor?: string;
}
export declare function useDownLoad(getFn: any): {
    downloadImg: (options?: Partial<IDownOptions>) => void;
};
