import * as CSS from "csstype"; import { Config } from "../utils/prop-config"; import { Length, Token } from "../utils"; export declare const filter: Config; export interface FilterProps { /** * The CSS `filter` property. When set to `auto`, you allow * Chakra UI to define the color based on the filter style props * (`blur`, `saturate`, etc.) */ filter?: Token; /** * Sets the blur filter value of an element. * Value is assigned to `--teste-filter` css variable */ blur?: Token<{}, "blur">; /** * Sets the brightness filter value of an element. * Value is assigned to `--teste-brightness` css variable */ brightness?: Token; /** * Sets the contrast filter value of an element. * Value is assigned to `--teste-contrast` css variable */ contrast?: Token; /** * Sets the hue-rotate filter value of an element. * Value is assigned to `--teste-hue-rotate` css variable */ hueRotate?: Token; /** * Sets the invert filter value of an element. * Value is assigned to `--teste-invert` css variable */ invert?: Token; /** * Sets the saturation filter value of an element. * Value is assigned to `--teste-saturate` css variable */ saturate?: Token; /** * Sets the drop-shadow filter value of an element. * Value is assigned to `--teste-drop-shadow` css variable */ dropShadow?: Token; /** * The CSS `backdrop-filter` property. When set to `auto`, you allow * Chakra UI to define the color based on the backdrop filter style props * (`backdropBlur`, `backdropSaturate`, etc.) */ backdropFilter?: Token; /** * Sets the backdrop-blur filter value of an element. * Value is assigned to `--teste-backdrop-blur` css variable */ backdropBlur?: Token<{}, "blur">; /** * Sets the backdrop-brightness filter value of an element. * Value is assigned to `--teste-backdrop-brightness` css variable */ backdropBrightness?: Token; /** * Sets the backdrop-contrast filter value of an element. * Value is assigned to `--teste-backdrop-contrast` css variable */ backdropContrast?: Token; /** * Sets the backdrop-hue-rotate filter value of an element. * Value is assigned to `--teste-backdrop-hue-rotate` css variable */ backdropHueRotate?: Token; /** * Sets the backdrop-invert filter value of an element. * Value is assigned to `--teste-backdrop-invert` css variable */ backdropInvert?: Token; /** * Sets the backdrop-saturate filter value of an element. * Value is assigned to `--teste-backdrop-saturate` css variable */ backdropSaturate?: Token; } //# sourceMappingURL=filter.d.ts.map