import { type JSXSlot } from "@cn-ui/reactive";
export interface ResultProps {
    header?: JSXSlot;
    title: string;
    subTitle?: string;
    footer?: JSXSlot;
}
export declare const Result: (props: ResultProps) => import("solid-js").JSX.Element;
