import type { IndicatorProps } from "..";
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Type
 * [IndicatorProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1099)
 * ## Props
 * @prop children
 * @prop color = "primary"
 * @prop cornerStyle = "circular"
 * @prop size = "md"
 * @prop border = false
 * @prop placement
 * @prop offset = true
 * @prop class: className
 * @prop ...restProps
 */
declare const Indicator: import("svelte").Component<IndicatorProps, {}, "">;
type Indicator = ReturnType<typeof Indicator>;
export default Indicator;
