import { Direction, ThemeModule } from '@sprinklrjs/spaceweb-themes/types'; import { StyleUtils } from '../../types'; declare type Breakpoint = [string, string]; declare type ScreenList = { [name: string]: string; }; /** * Gets screens by breakpoint name from the theme */ export declare const getScreens: () => ScreenList; /** * Gets a tuple of all breakpoints from the theme */ export declare const getBreakpoints: () => Breakpoint[]; /** * Setup events for responsive testing */ export declare const setupBreakpoints: () => void; /** * Gets CSS declaration of the first element matching `[data-testid=]` */ export declare const getCSSByTestId: (testId: string) => CSSStyleDeclaration; export declare const getCSSByBasewebId: (basewebId: string) => CSSStyleDeclaration; export declare const getCSSFromEl: (el: any) => CSSStyleDeclaration; export declare const convertToTestableTheme: (testTheme: ThemeModule) => ThemeModule; export declare const getTestStyleUtils: (direction?: Direction) => StyleUtils; export {};