/** * Possible breakpoint values * * @deprecated use `Breakpoint` from the OpaqueResponsive system instead **/ export type LegacyBreakpoint = 'xs' | 'sm' | 'md' | 'lg' | 'xl'; /** * A Responsive type is an object with breakpoint keys and user typed values. * * @deprecated there is no direct replacement for this type, please migrate * to the OpaqueResponsive system instead **/ export type LegacyResponsive = Partial>; /** * LazyResponsive values can be either a single value or a responsive value. * * @deprecated use `ValueOrResponsive` from the OpaqueResponsive system instead **/ export type LegacyLazyResponsive = T | LegacyResponsive; /** * Converts a legacy responsive value to css string for a given property. * This is a drop-in replacement for the `cssPropsForBreakpointValues` * responsive theme helper. * * @deprecated use `cssForResponsive` from the OpaqueResponsive system instead **/ export declare function cssForLegacyResponsive(valueMap: LegacyLazyResponsive, propName: string, isImportant?: boolean): import("styled-components").RuleSet; /** * Converts a legacy responsive value to css string for a given property. * This is a drop-in replacement for the `responsiveProp` helper. * * @deprecated use `cssForResponsive` from the OpaqueResponsive system instead */ export declare function legacyResponsiveProp(cssPropName: string, breakpointValues: LegacyLazyResponsive, options?: { isImportant?: boolean; }): import("styled-components").RuleSet;