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