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 CheckMarkIconProps = typeof __propDef.props;
export type CheckMarkIconEvents = typeof __propDef.events;
export type CheckMarkIconSlots = typeof __propDef.slots;
/** [See Docs](https://geist-ui-svelte.dev/components/icons?icon=checkmark) | [Open Issue](https://github.com/ieedan/geist-ui-svelte/issues/new) */
export default class CheckMarkIcon extends SvelteComponent<CheckMarkIconProps, CheckMarkIconEvents, CheckMarkIconSlots> {
}
export {};
