import type { DeepPartial } from '@use-gpu/core'; import type { LC, PropsWithChildren } from '@use-gpu/live'; export declare const DEBUG_DEFAULTS: DebugContextProps; export type DebugContextProps = { ssao: { picking: boolean; overscan: boolean; }; voxel: { iterations: boolean; }; sdf2d: { contours: boolean; subpixel: boolean; solidify: boolean; preprocess: boolean; postprocess: boolean; }; layout: { inspect: boolean; }; }; export type DebugProviderProps = PropsWithChildren<{ debug: DeepPartial; }>; export declare const DebugContext: import("@use-gpu/live").LiveContext; export declare const useDebugContext: () => DebugContextProps; export declare const DebugProvider: LC;