import { AffixCompactEmits, AffixCompactProps, AffixUi } from "@soybeanjs/headless/affix"; import { ClassValue } from "@soybeanjs/headless/types"; //#region src/components/affix/types.d.ts /** * Properties for the Affix component. */ interface AffixProps extends AffixCompactProps { /** * Additional class names to apply to the content element. */ class?: ClassValue; /** * Per-slot class overrides for the component. */ ui?: Partial; } /** * Events for the Affix component. */ type AffixEmits = AffixCompactEmits; //#endregion export { AffixEmits, AffixProps };