import { SvelteComponent } from "svelte"; declare const __propDef: { props: { initialShow?: boolean; label: string; /** The label to be shown when expanded */ showLabel?: string | undefined; /** Adds animation to the open and close of the content */ animate?: boolean; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type DetailsProps = typeof __propDef.props; export type DetailsEvents = typeof __propDef.events; export type DetailsSlots = typeof __propDef.slots; /** * An expandable component to hide / show content. * * [See Docs](https://geist-ui-svelte.dev/components/details) | [Open Issue](https://github.com/ieedan/geist-ui-svelte/issues/new) */ export default class Details extends SvelteComponent { } export {};