import type { QuoteVersionRecord } from "../schemas.js"; export interface ProposalShareMessages { sendToClient: string; sendForReview: string; copyReviewLink: string; copyReviewOnlyLink: string; reviewOnlyNotice: string; } export interface ProposalShareState { actionLabel: string; isReviewOnly: boolean; notice: string | null; } export declare function getProposalShareState(version: Pick, messages: ProposalShareMessages): ProposalShareState;