import { type ExemplarTraceIdDestination } from '../types'; type Props = { value: ExemplarTraceIdDestination; onChange: (value: ExemplarTraceIdDestination) => void; onDelete: () => void; disabled?: boolean; }; export declare function ExemplarSetting({ value, onChange, onDelete, disabled }: Props): import("react/jsx-runtime").JSX.Element; export {};