import { QRL } from "@builder.io/qwik"; export type TransitionTimingFunction = "ease" | "linear" | "ease-in" | "ease-out" | "ease-in-out" | string; export declare const useDebouncer: (fn: QRL<(args: any) => void>, delay: number) => QRL<(args: any) => void>; export declare const CarouselContainer: import("@builder.io/qwik").Component<{ align?: string | undefined; } & import("@builder.io/qwik").HTMLElementAttrs & import("@builder.io/qwik").QwikAttributes>;