/** @typedef {typeof __propDef.props}  RightArrowBtnProps */
/** @typedef {typeof __propDef.events}  RightArrowBtnEvents */
/** @typedef {typeof __propDef.slots}  RightArrowBtnSlots */
export default class RightArrowBtn extends SvelteComponentTyped<{
    onNavBtnClick: any;
    showNavBtns: any;
    rightBtnIcon: any;
}, {
    [evt: string]: CustomEvent<any>;
}, {}> {
}
export type RightArrowBtnProps = typeof __propDef.props;
export type RightArrowBtnEvents = typeof __propDef.events;
export type RightArrowBtnSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        onNavBtnClick: any;
        showNavBtns: any;
        rightBtnIcon: any;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export {};
