export declare const Tile: { baseStyle?: { container: { transitionProperty: string; transitionDuration: string; color: string; borderRadius: string; padding: string; height: string; _hover: { bg: string; }; outline: string; _focusVisible: { boxShadow: string; borderColor: string; outline: string; }; _active: { bg: string; borderColor: string; boxShadow: string; }; bg: string; border: string; borderColor: string; whiteSpace: string; flexDir: string; alignItems: string; maxWidth: string; textAlign: string; alignSelf: string; justifyContent: string; }; title: { color: string; textStyle: string; mt: string; }; icon: { boxSize: string; color: string; }; subtitle: { color: string; textStyle: string; }; text: { color: string; textStyle: string; textAlign: string; }; } | undefined; sizes?: { [key: string]: import("@chakra-ui/styled-system").PartsStyleInterpolation<{ keys: ("container" | "title" | "text" | "icon" | "subtitle")[]; }>; } | undefined; variants?: { complex: { title: { mb: number; }; subtitle: { mb: string; }; }; simple: { title: { mb: string; }; }; } | undefined; defaultProps?: { size?: string | number | undefined; variant?: "simple" | "complex" | undefined; colorScheme?: string | undefined; } | undefined; parts: ("container" | "title" | "text" | "icon" | "subtitle")[]; };