import { ButtonInterface } from './ButtonInterface';
import { ButtonStyle } from './ButtonStyle';
export interface Button extends ButtonInterface {
}
export declare class Button implements ButtonInterface {
    Style(style: ButtonStyle): this;
    Label(label: string): this;
    CustomID(custom_id: string): this;
    Url(url: string): this;
    Disabled(disabled: boolean): this;
}
//# sourceMappingURL=Button.d.ts.map