/** @component topbar */ export declare type TopbarColor = 'dark' | 'light' | 'blue'; export declare class TopbarComponent { /** @prop Topbar header color | '' */ color: TopbarColor; /** @prop Determines if Topbar is fixed to top | false */ fixed: boolean; /** @prop Determines if Topbar is absolute to top in a container | false */ absolute: boolean; }