import { As, Props } from "ariakit-react-utils/types"; import { CommandOptions } from "ariakit/command"; import { RoleProps } from "ariakit/role"; import { PlaygroundCodeOptions } from "./playground-code"; import { PlaygroundState } from "./playground-state"; export declare const usePlaygroundEditor: import("ariakit-react-utils/types").Hook>; export declare const PlaygroundEditor: import("ariakit-react-utils/types").Component>; export declare type PlaygroundEditorOptions = PlaygroundCodeOptions & CommandOptions & { state?: PlaygroundState; file: string; lineNumbers?: boolean; keyboardDescription?: string; keyboardDescriptionProps?: RoleProps; }; export declare type PlaygroundEditorProps = Props>;