import { ImageRenderingPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface ImageRenderingProps { /** * The **`image-rendering`** CSS property sets an image scaling algorithm. The property applies to an element itself, to any images set in its other properties, and to its descendants. * * @see https://developer.mozilla.org/docs/Web/CSS/image-rendering */ style$ImageRendering: T; } export declare const imageRendering: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;