/**
* Used to retrieve the origin from a url
*
* @remarks
* Uses a regex to get origin (can't handle localhost origins)
*
* @paramurl - URL
* @returns The origin of the url
*/exportdeclareconstgetOrigin: (url: string) =>string;
exportdefault getOrigin;