import type { ElProps } from '..'; export type OffcanvasPlacements = 'top' | 'end' | 'bottom' | 'start'; export interface OffcanvasProps extends Partial { placement?: OffcanvasPlacements; noScroll?: boolean; backdrop?: boolean; autoClose?: boolean; show?: boolean; close?: () => void; } export interface OffcanvasBodyProps extends Partial { } export interface OffcanvasHeaderProps extends Partial { title?: string; }