import * as React from 'react'; import { FlexProps } from '../../primitives/Flex'; import { PolymorphicComponentPropsWithRef } from '../../types'; type TextButtonProps = FlexProps & { disabled?: boolean; endIcon?: React.ReactNode; loading?: boolean; startIcon?: React.ReactNode; }; declare const TextButton: TextButtonComponent<"button">; type TextButtonComponent = (props: PolymorphicComponentPropsWithRef>) => JSX.Element; export { TextButton }; export type { TextButtonProps }; //# sourceMappingURL=TextButton.d.ts.map