import React from 'react'; interface Props { /** * ImgBB API Key */ imgbb_api_key: string; children?: React.ReactNode; } export declare const ImgbbProvider: ({ imgbb_api_key, children }: Props) => JSX.Element; export declare const useImgbb: () => Props; export {};