import React, { PropsWithChildren } from 'react'; interface MainProps extends PropsWithChildren { title?: React.ReactNode; header?: React.ReactNode; actions?: React.ReactNode; } export declare const Main: ({ title, header, actions, children }: MainProps) => import("react/jsx-runtime").JSX.Element; export {};