import { NewPlugin } from 'pretty-format' import { css } from 'styled-components' declare global { namespace jest { interface AsymmetricMatcher { $$typeof: Symbol; sample?: string | RegExp | object | Array | Function; } type Value = string | number | RegExp | AsymmetricMatcher | undefined; interface Options { media?: string; modifier?: string | ReturnType; supports?: string; } interface Matchers { toHaveStyleRule(property: string, value?: Value, options?: Options): R; } } } export interface StyledComponentsSerializerOptions { addStyles?: boolean, classNameFormatter?: (index: number) => string } export declare const styleSheetSerializer: NewPlugin & { setStyleSheetSerializerOptions: (options?: StyledComponentsSerializerOptions) => void };