import { Order, GraphQLClient } from '@propeller-commerce/propeller-sdk-v2'; export interface QuoteActionsProps { /** GraphQL client for the Propeller SDK */ graphqlClient?: GraphQLClient; /** The quotation for which the actions will take place */ quote: Order; /** Labels used in the quote actions component */ labels?: Record; /** Action function triggered when the "Accept quotation" button is clicked. * If not provided, the base implementation calls setOrderStatus on the SDK. */ onAccept?: (quote: Order) => void; /** Action function triggered after the quote is accepted. Usually for navigating towards the thank you page. */ afterAccept?: (quote: Order) => void; /** Show the terms and conditions acceptance */ showTermsAndConditions?: boolean; /** Action when the "Terms and conditions" link is clicked */ onTermsAndConditionsClick?: () => void; } declare const _default: import('vue').DefineComponent & Readonly<{}>, { showTermsAndConditions: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; export default _default;