import * as React from "react"; export declare type Font = { fontFamily: string; fontWeight?: "normal" | "bold" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900"; }; export declare type Fonts = { regular: Font; medium: Font; light: Font; thin: Font; }; export declare type colorTypes = "primary" | "secondary" | "surface" | "background" | "error" | "divider" | "strong" | "medium" | "light" | "strongInverse" | "mediumInverse" | "lightInverse"; export declare type Theme = any; export declare type $Omit = Pick>; export declare type $RemoveChildren> = $Omit, "children">; export declare type EllipsizeProp = "head" | "middle" | "tail" | "clip";