import React, { PropsWithChildren } from 'react'; import { ButtonProps } from '@shopify/post-purchase-ui-extensions'; export interface Props extends PropsWithChildren { /** Whether the button should fill all available inline space. */ fill?: boolean; /** Renders a button that is visually styled with secondary colors */ secondary?: boolean; /** Renders a button that is visually styled with tertiary colors and padding */ tertiary?: boolean; /** Adds an underline to the text when rendered as a plain button */ underline?: boolean; } export declare const Button: React.ForwardRefExoticComponent>;