/** @typedef {typeof __propDef.props}  LeftArrowBtnProps */
/** @typedef {typeof __propDef.events}  LeftArrowBtnEvents */
/** @typedef {typeof __propDef.slots}  LeftArrowBtnSlots */
export default class LeftArrowBtn extends SvelteComponentTyped<{
    onNavBtnClick: any;
    showNavBtns: any;
    leftBtnIcon: any;
}, {
    [evt: string]: CustomEvent<any>;
}, {}> {
}
export type LeftArrowBtnProps = typeof __propDef.props;
export type LeftArrowBtnEvents = typeof __propDef.events;
export type LeftArrowBtnSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        onNavBtnClick: any;
        showNavBtns: any;
        leftBtnIcon: any;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export {};
