import React from 'react'; interface CustomerNameProps { name: string; url: string; } export declare function CustomerName({ url, name }: CustomerNameProps): React.JSX.Element; export {};