import React, { PropsWithChildren } from "react"; import { Density } from "../../styling/types"; import type { ColorSchemeName } from "react-native"; export type EDSProviderProps = { /** * The color scheme to use for the components. You can fetch the system scheme using the * `useColorScheme` hook provided by react native. * @see https://reactnative.dev/docs/usecolorscheme */ colorScheme: ColorSchemeName; /** * The density value to use for the components. You can configure the conditional for these yourself, * but an advised approach is to treat all screen widths below 576 as `phone`. */ density: Density; }; export declare const EDSProvider: { (props: PropsWithChildren): React.JSX.Element; displayName: string; };