import * as React from "react";
import type * as Common from "../../common/types";
interface Props {
    children: React.ReactNode;
    transparent?: boolean;
    size?: Common.InputSize;
}
declare const ActiveButton: ({ children, transparent, size }: Props) => JSX.Element;
export default ActiveButton;
