import type { FC, DetailedHTMLProps, HTMLAttributes } from 'react';
export interface PharosSidenavProps extends DetailedHTMLProps, HTMLElement> {
/**
* Indicates whether or not the sidenav is open
*/
open?: boolean;
/**
* Indicates whether or not the close button displays in the sidenav.
*/
hasCloseButton?: boolean;
/**
* Indicates the skip to target
*/
mainContentId?: string | undefined;
/**
* Fires when the sidenav has closed
*/
'onPharos-Sidenav-Close'?: (event: CustomEvent) => void;
/**
* Fires when the sidenav has opened
*/
'onPharos-Sidenav-Open'?: (event: CustomEvent) => void;
}
export declare const PharosSidenav: FC;
//# sourceMappingURL=pharos-sidenav.d.ts.map