/// type SelectorType = (state: StateType) => ReturnType; export declare const createProvider: (controller: (props: ProviderProps) => [state: StateType, actions: Actions]) => readonly [({ children, ...props }: import("react").PropsWithChildren) => import("react/jsx-runtime").JSX.Element, () => Actions, (selector: SelectorType) => SelectorReturn]; export {};