import { FlattenInterpolation, SimpleInterpolation, ThemeProps } from 'styled-components'; import { GlobalAppThemeInterface } from '@monorail/helpers/theme'; export declare type CssOverrides = SimpleInterpolation | FlattenInterpolation>; declare type Props = { cssOverrides?: CssOverrides; }; /** * @deprecated please don't use this.. * * The Div helper is a component that accepts `css` prop so we can easily inline CSS Objects with TypeScript support. * The `cssLoose` property offers a relaxed typing for arbitrary string keys (escape hatch, e.g. `& > #blah`) * * Usage: ```
div': { display: 'flex' }}} /> ``` */ export declare const Div: import("styled-components").StyledComponent<"div", any, Props, never>; export declare const Span: import("styled-components").StyledComponent<"span", any, Props, never>; export declare const Form: import("styled-components").StyledComponent<"form", any, Props, never>; export {};