import type { CardProps } from "..";
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Type
 * [CardProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L393)
 * ## Props
 * @prop children
 * @prop color = "gray"
 * @prop horizontal = false
 * @prop shadow = "md"
 * @prop reverse = false
 * @prop img
 * @prop size = "sm"
 * @prop class: className
 * @prop imgClass
 * @prop contentClass
 * @prop ...restProps
 */
declare const Card: import("svelte").Component<CardProps, {}, "">;
type Card = ReturnType<typeof Card>;
export default Card;
