import React from "react"; import { HypertextClassNameContract, ManagedClasses } from "@microsoft/fast-components-class-name-contracts-base"; export declare type HypertextManagedClasses = ManagedClasses; export declare type HypertextUnhandledProps = React.AnchorHTMLAttributes; export interface HypertextHandledProps extends HypertextManagedClasses { /** * The hypertext content */ children?: React.ReactNode; } export declare type HypertextProps = HypertextHandledProps & HypertextUnhandledProps;