import { type NamedAddress } from "./trpc/emails/base.js"; /** * Extract email address from a string in the following format: "Name Surname ". * If the string is in the format "email@hostname", the name will be undefined. * * SORCE-1353 - consider making this compatible with RFC 5322 * * @param input The string to extract email address from. */ export declare const getNamedAddress: (input: string) => NamedAddress; export declare const getNamedAddressAsString: (input: NamedAddress) => string; //# sourceMappingURL=getNamedAddress.d.ts.map