import type { Snippet } from 'svelte'; type $$ComponentProps = { href: string; /** `primary` is the filled button, `secondary` the outlined one beside it. */ variant?: 'primary' | 'secondary'; external?: boolean; /** Trailing arrow that nudges on hover. Defaults on for `primary`. */ arrow?: boolean; children: Snippet; }; declare const Action: import("svelte").Component<$$ComponentProps, {}, "">; type Action = ReturnType; export default Action;