///
import { AllSystemProps } from "./system/unions";
export declare type TextProps = AllSystemProps & {
gray?: boolean;
bold?: boolean;
mono?: boolean;
};
export declare const Text: import("styled-components").StyledComponent<"span", any, import("react").PropsWithChildren, never>;