import type { Snippet } from "svelte";
interface Props {
    as?: string;
    load?: "always" | "conditional";
    repeat?: boolean;
    children?: Snippet;
    [key: string]: unknown;
}
declare const BlossomCarousel: import("svelte").Component<Props, {
    prev: (options?: {
        align?: string;
    }) => void;
    next: (options?: {
        align?: string;
    }) => void;
}, "">;
type BlossomCarousel = ReturnType<typeof BlossomCarousel>;
export default BlossomCarousel;
