import { SvelteComponentTyped } from "svelte";
import type { SVGAttributes } from 'svelte/elements';
declare const __propDef: {
    props: SVGAttributes<SVGSVGElement> & {
        svgClass?: string;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type ArrowKeyRightProps = typeof __propDef.props;
export type ArrowKeyRightEvents = typeof __propDef.events;
export type ArrowKeyRightSlots = typeof __propDef.slots;
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Props
 * @prop export let svgClass: $$Props['svgClass'] = 'w-4 h-4';
 */
export default class ArrowKeyRight extends SvelteComponentTyped<ArrowKeyRightProps, ArrowKeyRightEvents, ArrowKeyRightSlots> {
}
export {};
