import { StyleOptions } from '../../types'; export interface FilterProps { /** * The **`filter`** CSS property applies graphical effects like blur or color shift to an element. Filters are commonly used to adjust the rendering of images, backgrounds, and borders. * * @see https://developer.mozilla.org/docs/Web/CSS/filter */ style$Filter: T; } export declare const filter: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;