import { SvelteComponent } from "svelte";
import type { SelectedFiles } from "./types";
declare const __propDef: {
    props: {
        selectionCount?: number;
        selectedFiles: SelectedFiles;
    };
    events: {
        checked: CustomEvent<any>;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {
            data: SelectedFiles;
        };
    };
    exports?: {} | undefined;
    bindings?: string | undefined;
};
export type SelectionBarProps = typeof __propDef.props;
export type SelectionBarEvents = typeof __propDef.events;
export type SelectionBarSlots = typeof __propDef.slots;
export default class SelectionBar extends SvelteComponent<SelectionBarProps, SelectionBarEvents, SelectionBarSlots> {
}
export {};
