import type { CssInterop, RuntimeValueDescriptor } from "../../types"; export { StyleSheet } from "./stylesheet"; export { colorScheme } from "./appearance-observables"; export { rem } from "./unit-observables"; export declare const interopComponents: Map>; export declare const cssInterop: CssInterop; export declare const remapProps: CssInterop; export declare function useColorScheme(): { colorScheme: "light" | "dark"; setColorScheme: (value: "light" | "dark" | "system") => void; toggleColorScheme: () => void; }; export declare function vars(variables: Record): Record; export declare const useUnstableNativeVariable: (name: string) => any; export declare const useSafeAreaEnv: () => void;