import * as React from 'react';
import { Styles } from './Styles';
import type { StyleTheme } from './types';
interface ProviderProps {
    dark?: boolean;
    theme?: StyleTheme;
    children: React.ReactNode;
}
export declare const Provider: React.FC<ProviderProps>;
export declare const useStyles: () => Styles;
export declare const useColors: () => import("./color/Colors").Colors;
export {};
