import { JSX } from 'react'; import { ButtonProps } from '../button/button'; import { PolymorphicComponentPropWithRef } from '../react-types'; export type AppHeaderProps = React.ComponentPropsWithoutRef<"header">; export type AppSidebarProps = React.ComponentPropsWithoutRef<"dialog">; export type AppStickyProps = React.ComponentPropsWithoutRef<"div">; export type AppMainProps = React.ComponentPropsWithoutRef<"main">; export type AppFooterProps = React.ComponentPropsWithoutRef<"footer">; export type AppProps = PolymorphicComponentPropWithRef; type AppComponent = (props: AppProps) => JSX.Element; export declare const App: AppComponent & { Header: import('react').ForwardRefExoticComponent, HTMLElement>, "ref"> & import('react').RefAttributes>; Sidebar: import('react').ForwardRefExoticComponent, HTMLDialogElement>, "ref"> & import('react').RefAttributes>; Sticky: AppComponent; Toggle: import('react').ForwardRefExoticComponent, "ref"> & import('react').RefAttributes>; Main: import('react').ForwardRefExoticComponent, HTMLElement>, "ref"> & import('react').RefAttributes>; Footer: import('react').ForwardRefExoticComponent, HTMLElement>, "ref"> & import('react').RefAttributes>; Script: () => JSX.Element; }; export {};