import type { HTMLAttributes } from 'svelte/elements';
type $$ComponentProps = {
label: string;
min_value?: number;
max_value?: number;
placeholders?: {
min?: string;
max?: string;
};
title?: string;
histogram_data?: number[];
histogram_height?: number;
histogram_color?: string;
histogram_position?: `top` | `bottom` | `none`;
log?: boolean;
disabled?: boolean;
unit?: string;
show_clear_button?: boolean;
onchange?: (min: number | undefined, max: number | undefined) => void;
onclear?: () => void;
} & HTMLAttributes;
declare const PropertyFilter: import("svelte").Component<$$ComponentProps, {}, "min_value" | "max_value">;
type PropertyFilter = ReturnType;
export default PropertyFilter;