import type { ImageStyle, StyleProp, TextStyle, ViewStyle } from 'react-native';
import type { TestInstance } from 'test-renderer';
export type Style = ViewStyle | TextStyle | ImageStyle;
export declare function toHaveStyle(this: jest.MatcherContext, instance: TestInstance, style: StyleProp<Style>): {
    pass: boolean;
    message: () => string;
};
