import { default as React } from 'react'; export interface AppLinkItem { href: string; logo: string; alt: string; } export interface AppLinksProps { label: string; links: AppLinkItem[]; logoSize?: number; className?: string; } export declare const AppLinks: React.FC; //# sourceMappingURL=app-links.d.ts.map