import type { HtmlIngredientProps } from '../types.js';
interface IndicatorState {
    copied: boolean;
}
export interface ClipboardIndicatorProps extends HtmlIngredientProps<'span', HTMLSpanElement, IndicatorState> {
}
declare const ClipboardIndicator: import("svelte").Component<ClipboardIndicatorProps, {}, "ref">;
type ClipboardIndicator = ReturnType<typeof ClipboardIndicator>;
export default ClipboardIndicator;
