import { Code } from "@/types";
interface UseShareReturnType {
    onShare: () => Promise<void>;
    isShareCopied: boolean;
    shouldAllowShare: boolean;
}
declare const useShare: (code: Code) => UseShareReturnType;
export default useShare;
//# sourceMappingURL=useShare.d.ts.map