import { CSSResultArray, TemplateResult } from 'lit'; import { LuzmoButtonBase } from './../button/button-base'; declare const LuzmoInfieldButton_base: typeof LuzmoButtonBase & { new (...args: any[]): import("../..").SizedElementInterface; prototype: import("../..").SizedElementInterface; }; /** * @element luzmo-infield-button */ export declare class LuzmoInfieldButton extends LuzmoInfieldButton_base { static get styles(): CSSResultArray; /** * Whether to style the button as if it is at the start or end of a vertical stack * @type {'start' | 'end'} */ block?: 'start' | 'end'; /** * Whether to style the button as if it is at the start or end of a horizontal group * @type {'start' | 'end'} */ inline?: 'start' | 'end'; quiet: boolean; protected get buttonContent(): TemplateResult[]; } export {};