import type { Breakpoints } from '../../types'; export declare class StyleService { private readonly table; private getExistingRule; private createRule; createSelectorList(breakpoints: Breakpoints): Record; dumpStyles(): string; } /** * React Native Web is limited in the classes it can build, * namely it cannot create classes that have actual `@media` * queries. This is a service that circumvents this by * maintaining it's own stylesheets that are actually * responsive. */ export declare const styleService: StyleService;