import { SetState } from "ariakit-utils/types"; export declare function usePlaygroundState(props?: PlaygroundStateProps): PlaygroundState; export declare type PlaygroundState = { values: Record; setValues: SetState; setValue: (file: string, value: string) => void; }; export declare type PlaygroundStateProps = Partial> & { defaultValues?: PlaygroundState["values"]; setValues?: (values: PlaygroundState["values"]) => void; };