import type { ResponsiveCSSProps } from './css-props.types'; import type { Theme } from '../../theme'; /** * Converts CSS props to a CSS string, including media queries for responsive * props. */ export declare function parseCSSProps(props: ResponsiveCSSProps, theme: Theme): string; /** * Parses CSS props using the active theme's breakpoints. * * TODO: Update this hook to rely on the theme provider, rather than * static values. */ export declare function useCSSProps(props: ResponsiveCSSProps): string;