import React from "react"; import { IconName } from "../../data/types"; import { OptionalProps } from "../../lib/helpers/typescript-helpers"; import { Button } from "../primitives/button"; interface Props extends OptionalProps, "direction" | "alignment"> { label: string; icon?: IconName; } export declare function PrimaryButton(props: Props): JSX.Element; export declare namespace PrimaryButton { var displayName: string; } export declare function TertiaryButton(props: Props): JSX.Element; export declare namespace TertiaryButton { var displayName: string; } export declare function SecondaryButton(props: Props): JSX.Element; export declare namespace SecondaryButton { var displayName: string; } export declare function DestructiveButton(props: Props): JSX.Element; export declare namespace DestructiveButton { var displayName: string; } export {};