/**
* Vue 3 Integration fuer @breakpilot/consent-sdk
*
* Phase 4 refactor: thin barrel. Composables, components, plugin, and the
* injection key live in sibling files.
*
* @example
* ```vue
*
*
*
*
*
*
*
*
* ```
*/
export { CONSENT_KEY, type ConsentContext } from './context';
export { useConsent, provideConsent } from './composables';
export {
ConsentProvider,
ConsentGate,
ConsentPlaceholder,
ConsentBanner,
} from './components';
export { ConsentPlugin } from './plugin';