/// export interface Props { text?: string; type?: "headline" | "title" | "light" | "lead" | "mini"; className?: string; children?: any; } declare const Text: ({ text, type, className, children }: Props) => JSX.Element; export default Text;