import { type CSSProperties, type HTMLAttributeAnchorTarget, type HTMLAttributes, type ReactNode } from 'react';
type EmptyTestimonialProps = Omit, 'children' | 'title'> & {
actionHref?: string;
actionIcon?: ReactNode;
actionLabel?: ReactNode;
actionRel?: string;
actionTarget?: HTMLAttributeAnchorTarget;
defaultOpen?: boolean;
folderLabel?: string;
heading?: ReactNode;
highlight?: ReactNode;
highlightIcon?: ReactNode;
message?: ReactNode;
open?: boolean;
style?: CSSProperties;
subcopy?: ReactNode;
onOpenChange?: (open: boolean) => void;
};
export declare const EmptyTestimonial: ({ actionHref, actionIcon, actionLabel, actionRel, actionTarget, className, defaultOpen, folderLabel, heading, highlight, highlightIcon, message, open, style, subcopy, onOpenChange, ...rest }: EmptyTestimonialProps) => import("react/jsx-runtime").JSX.Element;
export type { EmptyTestimonialProps };