import type { BlockAction } from '@devvit/protos/types/devvit/ui/block_kit/v1beta/attributes.js'; import type { BlockStackDirection } from '@devvit/protos/types/devvit/ui/block_kit/v1beta/enums.js'; import type { BridgeContextWithMeta } from '../../client/web-view.js'; export type RenderContext = { bridgeContextWithMeta?: BridgeContextWithMeta | undefined; stackDirection: BlockStackDirection; stackDirectionReversed?: boolean | undefined; onAction?: ((action: BlockAction) => void) | undefined; experimental?: boolean | undefined; gapSize?: number | undefined; childIndex?: number | undefined; disableAssetSandbox?: boolean | undefined; resolveWebViewUrl?: ((url: string) => string) | undefined; }; //# sourceMappingURL=renderContext.d.ts.map