import type { NamedStyles, responsiveAllowListCircle } from "./type"; import { ResponsiveStore } from "../storePrivate"; export type screenSizeChangeProps = { width: number; height: number; }; type storeType = typeof ResponsiveStore.store; declare class ResponsiveStyleSheetInstance { store: storeType; create | NamedStyles>(styles: T | NamedStyles): T; _styleParse | NamedStyles>(styles: T | NamedStyles): T; isCircle(checkCircle: typeof responsiveAllowListCircle): boolean; isSameDimension(checkCircle: typeof responsiveAllowListCircle): boolean; constructor(); } declare const ResponsiveStyleSheet: ResponsiveStyleSheetInstance; export { ResponsiveStyleSheet }; //# sourceMappingURL=responsiveStyleSheet.d.ts.map