import type { SegmentPathProps } from '@zag-js/signature-pad';
import type { Merge } from 'type-fest';
import type { HtmlIngredientProps } from '../types.js';
export interface SignaturePadSegmentPathProps extends Merge<HtmlIngredientProps<'path', SVGPathElement>, SegmentPathProps> {
}
declare const SignaturePadSegmentPath: import("svelte").Component<SignaturePadSegmentPathProps, {}, "ref">;
type SignaturePadSegmentPath = ReturnType<typeof SignaturePadSegmentPath>;
export default SignaturePadSegmentPath;
