import * as z from "zod/v3"; export type GetLinkInfoRequest = { domain?: string | undefined; key?: string | undefined; /** * The unique ID of the short link. */ linkId?: string | undefined; /** * This is the ID of the link in the your database. */ externalId?: string | undefined; }; /** @internal */ export type GetLinkInfoRequest$Outbound = { domain?: string | undefined; key?: string | undefined; linkId?: string | undefined; externalId?: string | undefined; }; /** @internal */ export declare const GetLinkInfoRequest$outboundSchema: z.ZodType; export declare function getLinkInfoRequestToJSON(getLinkInfoRequest: GetLinkInfoRequest): string; //# sourceMappingURL=getlinkinfo.d.ts.map