import { IShorten } from './@types/Shorten.js'; import 'zod'; declare const isGdShorten: ({ url, slug, advancedLog }: IShorten) => Promise<{ ok: boolean; url: string; slug: string; error?: undefined; } | { ok: boolean; error: string; url?: undefined; slug?: undefined; }>; export { isGdShorten };