import { Component, ComponentOptionsMixin, DefineComponent, PropType, StyleValue, Ref } from 'vue'; declare const Sheet: DefineComponent< { /** * Component's HTML Element */ component: { type: PropType; default: 'div'; }; /** * Allows to open/close Sheet modal and set its initial state */ opened: { type: BooleanConstructor; default: false; }; /** * Enables Sheet modal backdrop (dark semi transparent layer behind) */ backdrop: { type: BooleanConstructor; default: true; }; /** * Object with Tailwind CSS colors classes */ colors: { type: PropType<{ /** * * @default 'bg-ios-light-surface-1 dark:bg-ios-dark-surface-1' */ bgIos?: string; /** * * @default 'bg-md-light-surface dark:bg-md-dark-surface' */ bgMaterial?: string; }>; }; }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { /** * Click handler on backdrop element */ backdropclick: (e: any) => void; } >; export default Sheet;