import type { BlockDefinition } from '@lit-pigeon/core'; export { videoBlock } from './blocks/video.js'; export { countdownBlock } from './blocks/countdown.js'; export { accordionBlock } from './blocks/accordion.js'; export { tableBlock } from './blocks/table.js'; export { carouselBlock } from './blocks/carousel.js'; /** The full standard catalog. Equivalent to the five named exports together. */ export declare const standardBlocks: BlockDefinition[]; /** * Register every block in {@link standardBlocks} with the core registry. * Call once at app boot (before `` mounts) to make the * full catalog available in the palette, canvas, and exporters. * * To register a subset, import the individual block constants and call * `registerBlock(...)` directly. */ export declare function registerStandardBlocks(): void; //# sourceMappingURL=index.d.ts.map