import React from "react"; import { AsComponentProp } from "../AsComponentProps"; import { PartialColorProps } from "../theme"; export interface BaseTextButtonProps extends PartialColorProps { children?: React.ReactNode; icon?: React.ReactNode; } export type TextButtonProps = AsComponentProp; export declare const TextButton: (props: TextButtonProps & { ref?: React.ForwardedRef; }) => React.ReactElement;