import { BackgroundProps, BordersProps, ColorProps, FlexboxProps, GridProps, LayoutProps, MarginProps, PaddingProps, PositionProps, ShadowProps, SpaceProps, TypographyProps } from "styled-system"; import { Color } from "./colors"; import { GradientProps } from "./gradients"; import { ShadowsProps } from "./shadows"; import { Size } from "./sizes"; import { CustomTheme } from "./theme"; export declare type DefaultProps = { variant?: VariantType; componentName?: string; }; export declare type StyledDefaultProps = DefaultProps & { theme: CustomTheme; }; export declare type StyledProps = GradientProps & SpaceProps & ColorProps & TypographyProps & LayoutProps & PaddingProps & MarginProps & FlexboxProps & GridProps & BackgroundProps & BordersProps & PositionProps & ShadowProps & ShadowsProps; export declare type AllProps = DefaultProps & StyledProps;