export interface PicProps {
    src: string;
}
export declare const Pic: {
    (props: PicProps): any;
    displayName: "Pic";
    serialize(props: PicProps): {
        pic: string;
    };
};
