import { SvelteComponent } from "svelte";
import type { BuiltInTrajectoryFormat } from 'molstar/lib/mol-plugin-state/formats/trajectory.js';
declare const __propDef: {
    props: {
        url: string;
        type: BuiltInTrajectoryFormat;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type StructureUrlProps = typeof __propDef.props;
export type StructureUrlEvents = typeof __propDef.events;
export type StructureUrlSlots = typeof __propDef.slots;
export default class StructureUrl extends SvelteComponent<StructureUrlProps, StructureUrlEvents, StructureUrlSlots> {
}
export {};
