/** * MUI Toolbar Component * * A flexible toolbar for page headers, action bars, and filter bars. * * @example * ```html * * Page Title * Action * * ``` */ import { MiuraElement } from '@miurajs/miura-element'; export default class MuiToolbar extends MiuraElement { /** * Toolbar size */ size: 'sm' | 'md' | 'lg'; /** * Border position */ border: 'none' | 'top' | 'bottom' | 'both'; /** * Background variant */ bg: 'transparent' | 'surface' | 'surface-subtle'; /** * Make toolbar sticky */ sticky: boolean; /** * Horizontal padding */ padding: 'none' | 'sm' | 'md' | 'lg'; /** * Gap between items */ gap: 'sm' | 'md' | 'lg'; /** * Vertical alignment */ align: 'start' | 'center' | 'end' | 'stretch'; static styles: import("@miurajs/miura-render").CSSResult; template(): import("@miurajs/miura-render").TemplateResult; } /** * MUI Page Header Component * * A standardized page header with title, description, and actions. * * @example * ```html * * * Dashboard * Overview of your content * New Story * * ``` */ export declare class MuiPageHeader extends MiuraElement { /** * Horizontal padding */ padding: 'none' | 'sm' | 'md' | 'lg'; /** * Add bottom border */ bordered: boolean; /** * Background */ bg: 'transparent' | 'surface' | 'surface-subtle'; static styles: import("@miurajs/miura-render").CSSResult; template(): import("@miurajs/miura-render").TemplateResult; } //# sourceMappingURL=toolbar.d.ts.map