import type { AnchorProps } from "../../types";
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Type
 * [AnchorProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1844)
 * ## Props
 * @prop children
 * @prop color = "primary"
 * @prop asButton = false
 * @prop onclick
 * @prop href = "#"
 * @prop class: className
 * @prop ...restProps
 */
declare const A: import("svelte").Component<AnchorProps, {}, "">;
type A = ReturnType<typeof A>;
export default A;
