UNPKG

strapi-plugin-comments

Version:
13 lines (12 loc) 687 B
import * as React from 'react'; interface EditorLayoutProps { children: React.ReactNode; isExpandMode: boolean; error?: string; previewContent?: string; onCollapse: () => void; } declare const EditorLayout: ({ children, isExpandMode, error, previewContent, onCollapse, }: EditorLayoutProps) => import("react/jsx-runtime").JSX.Element; declare const ExpandButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<any, never>> & string & (import("styled-components/dist/types").BaseObject | Omit<any, keyof React.Component<any, {}, any>>); export { EditorLayout, ExpandButton }; export type { EditorLayoutProps };