import type { DataSurfaceRegistry } from '@happyvertical/smrt-ui/data'; import type { ControlInteractionRegistry } from '@happyvertical/smrt-ui/forms'; import type { ViewIntent } from '@happyvertical/smrt-web'; import type { UseViewIntentOptions, ViewIntentIdentity } from '../view-intent.svelte.js'; type $$ComponentProps = { intent: ViewIntent; identity: ViewIntentIdentity; controlRegistry?: ControlInteractionRegistry; dataSurfaceRegistry?: DataSurfaceRegistry; effects?: UseViewIntentOptions['effects']; }; declare const ViewIntent: import("svelte").Component<$$ComponentProps, {}, "">; type ViewIntent = ReturnType; export default ViewIntent; //# sourceMappingURL=view-intent.fixture.svelte.d.ts.map