import { SvelteComponent } from "svelte";
import type { Rotation } from "../types.js";
declare const __propDef: {
    props: {
        rotation?: Rotation;
        size?: number;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type ChevronIconProps = typeof __propDef.props;
export type ChevronIconEvents = typeof __propDef.events;
export type ChevronIconSlots = typeof __propDef.slots;
/** [See Docs](https://geist-ui-svelte.dev/components/icons?icon=chevron) | [Open Issue](https://github.com/ieedan/geist-ui-svelte/issues/new) */
export default class ChevronIcon extends SvelteComponent<ChevronIconProps, ChevronIconEvents, ChevronIconSlots> {
}
export {};
