import type { Action, ActionReturn } from 'svelte/action'; type SomeBuilder> = Record & { action: Action; }; type GetActionAttributes = Builder extends Record & { action: Action; } ? Attr : never; /** * A special action for Melt UI's preprocessor `@melt-ui/pp`. * * @see https://www.melt-ui.com/docs/preprocessor * * @example * ```svelte * * *