@guardian/threads
Version:
11 lines (10 loc) • 322 B
TypeScript
import { FC, ReactNode } from 'react';
declare type PageWithSidebarProps = {
sidebar: ReactNode;
sidebarClassName?: string;
children: ReactNode;
currentBreakpoint: string;
};
export declare const PageWithSidebarNoBreakpoints: FC<PageWithSidebarProps>;
export declare const PageWithSidebar: any;
export {};