import { StyleSheet } from "react-native"; import type { ThemeDependentStyles } from "../styling"; type InferStyles = T extends ThemeDependentStyles ? R : never; /** * Processes a style sheet created with `EDSStyleSheet.create` to provide a resolved style you can use in your component. * @param themeStyles The style sheet object created by the `EDSStyleSheet.create` method * @returns A resolved style sheet object that adheres to the current app theme. */ export declare function useStyles | StyleSheet.NamedStyles>(themeStyles: ThemeDependentStyles): InferStyles; export declare function useStyles | StyleSheet.NamedStyles, TProps>(themeStyles: ThemeDependentStyles, props: TProps): InferStyles; export {};