UNPKG

837 BTypeScriptView Raw
1import { ComponentInterface, EventEmitter } from '../../stencil-public-runtime';
2import { Color, StyleEventDetail } from '../../interface';
3export declare class ToolbarTitle implements ComponentInterface {
4 el: HTMLElement;
5 /**
6 * The color to use from your application's color palette.
7 * Default options are: `"primary"`, `"secondary"`, `"tertiary"`, `"success"`, `"warning"`, `"danger"`, `"light"`, `"medium"`, and `"dark"`.
8 * For more information on colors, see [theming](/docs/theming/basics).
9 */
10 color?: Color;
11 /**
12 * The size of the toolbar title.
13 */
14 size?: 'large' | 'small';
15 /**
16 * Emitted when the styles change.
17 * @internal
18 */
19 ionStyle: EventEmitter<StyleEventDetail>;
20 protected sizeChanged(): void;
21 connectedCallback(): void;
22 private emitStyle;
23 private getSize;
24 render(): any;
25}