import * as React from 'react';

/**
 * TextLink — from @kuppwest/apple-clean@0.1.0.
 */
export interface TextLinkProps {
  /** `standalone` = 17px blue link used in the hero link row (`.kwac-link`); `inline` = semibold link inside running copy (`. */
  variant?: "standalone" | "inline";
  /** Append the "›" chevron after the label (standalone links in the template always carry it). */
  chevron?: boolean;
  href: string;
  children: React.ReactNode;
  className?: string;
  id?: string;
  style?: CSSProperties;
}

export declare const TextLink: React.ComponentType<TextLinkProps>;
