import type { ISheetObject, UnknownShorthandCompoundProps } from '@theatre/core'; import type { CurrentWritable } from '@threlte/core'; type Context = { sheetObject: CurrentWritable>; addProps: (props: UnknownShorthandCompoundProps) => void; removeProps: (names: string[]) => void; }; export declare const createSheetContext: (context: Context) => void; export declare const useSheet: () => Context; export {};