import { type APIButtonComponentWithCustomId, type APIButtonComponentWithSKUId, type APIButtonComponentWithURL, ButtonStyle } from "discord-api-types/v10"; interface ButtonWithCustomId extends Omit { style?: Exclude; } /** * Creates a button component * * Button object */ export declare function Button(config: ButtonWithCustomId): APIButtonComponentWithCustomId; export declare function Button(config: Omit): APIButtonComponentWithSKUId; export declare function Button(config: Omit): APIButtonComponentWithURL; export {};