import * as st from "simple-runtypes";
export declare const HasOptionalPostData: {
    post: st.OptionalRuntype<{
        postId: string;
        postTitle?: string | null | undefined;
        hidePostLink?: boolean | null | undefined;
    }>;
};
