jobiqo-cl
Version:
[](https://circleci.com/gh/jobiqo/jobiqo-cl)
25 lines (24 loc) • 593 B
TypeScript
/// <reference types="styled-components" />
import React from 'react';
export interface OneSidebarLayoutProps {
/**
* The main content area.
*/
content: React.ReactNode;
/**
* The sidebar area.
*/
sidebar: React.ReactNode;
/**
* The theme props is passed automatically to the component via styled components.
*
* @default "null"
*/
theme: any;
}
/**
* Layout with one sidebar.
*/
export declare const OneSidebarLayout: React.ForwardRefExoticComponent<Pick<OneSidebarLayoutProps, "content" | "sidebar"> & {
theme?: any;
}>;