export interface DrawerOptions<C> {
    /**
     * A host element the drawer will be appended to.
     */
    host?: HTMLElement;
    /**
     * Data to pass to component inside drawer.
     */
    initialState?: Partial<C>;
    /**
     * Defines whether the drawer should be closed when navigation start is detected. Defaults to <code>true</code>.
     */
    closeOnNavigation?: boolean;
}
//# sourceMappingURL=bottom-drawer.model.d.ts.map