import { FC } from 'react';
export interface TextProps {
    color: string;
}
declare const Text: FC<TextProps>;
export default Text;
