import React from 'react'; export interface IOnScreenArticleComponentProps { id: number; title: string; contentId: number; published: boolean; children: React.ReactNode; } type OnScreenArticleComponent = (props: IOnScreenArticleComponentProps) => React.JSX.Element; export declare const OnScreenArticleContext: React.Context; export declare const useOnScreenArticle: () => OnScreenArticleComponent; export declare function OnScreenArticle(props: IOnScreenArticleComponentProps): React.JSX.Element; export {};