/**
* External dependencies
*/importtype { ReactNode } from 'react';
export type ExternalLinkProps = {
/**
* The content to be displayed within the link.
*/
children: ReactNode;
/**
* The URL of the external resource.
*/
href: string;
};
//# sourceMappingURL=types.d.ts.map