export interface PublishStateProps {
    /** The text displayed. */
    text?: string;
}
declare const PublishState: {
    (publishState: PublishStateProps): any;
    defaultProps: {
        text: string;
    };
};
export default PublishState;
