import { SvelteComponent } from "svelte";
declare const __propDef: {
    props: {
        visible?: boolean;
        placement?: "top" | "bottom" | "right" | "left";
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export type DrawerProps = typeof __propDef.props;
export type DrawerEvents = typeof __propDef.events;
export type DrawerSlots = typeof __propDef.slots;
/**
 * A component to hide / show content as a sidebar pop-up.
 *
 * [See Docs](https://geist-ui-svelte.dev/components/drawer) | [Open Issue](https://github.com/ieedan/geist-ui-svelte/issues/new)
 */
export default class Drawer extends SvelteComponent<DrawerProps, DrawerEvents, DrawerSlots> {
}
export {};
