import type React from 'react';
export interface SubtitleProps {
    children: React.ReactNode;
}
export declare const Subtitle: {
    (props: SubtitleProps): any;
    displayName: "Subtitle";
    serialize(props: SubtitleProps): {
        subtitle: React.ReactNode;
    };
};
