import { SpaceProps, FlexboxProps, LayoutProps } from 'styled-system'; import { ColorToneType } from 'src/shared/theme'; export interface ReminderStyledProps extends SpaceProps, FlexboxProps, LayoutProps { severity: 'success' | 'warning' | 'danger' | 'info' | 'primary' | 'secondary'; colorTone?: ColorToneType; } export declare const ReminderStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, ReminderStyledProps>> & string;