import { LitElement } from '@rxdi/lit-html';
import { PalettesUnion } from '../settings';
type InputType = 'hidden' | 'text' | 'search' | 'tel' | 'url' | 'email' | 'password' | 'datetime' | 'date' | 'month' | 'week' | 'time' | 'datetime-local' | 'number' | 'range' | 'color' | 'checkbox' | 'radio' | 'file' | 'submit' | 'image' | 'reset' | 'button';
/**
 * @customElement rx-button
 */
export declare class ButtonComponent extends LitElement {
    palette: PalettesUnion;
    disabled: boolean;
    type: InputType;
    shadow: boolean;
    OnUpdateFirst(): void;
    private getFormElement;
    private get;
    private findForm;
}
export {};
