import type { BaseProps, SizedComponent, VariantComponent, ClickHandler, InteractiveHandlers } from '../../type/component';
interface Props extends BaseProps, SizedComponent, VariantComponent<'pin' | 'current'>, ClickHandler, InteractiveHandlers {
    /** Whether the current location variant should pulse @default false */
    pulse?: boolean;
    /** Custom color for the pin @default undefined (uses theme colors) */
    color?: string;
}
declare const LocationPin: import("svelte").Component<Props, {}, "">;
type LocationPin = ReturnType<typeof LocationPin>;
export default LocationPin;
//# sourceMappingURL=LocationPin.svelte.d.ts.map