import React from 'react';
export declare type PersistentDrawerType = {
    children: React.ReactNode;
    title?: string;
};
export declare type DrawerPageProps = {
    component: React.ReactNode;
    id: string;
    icon: React.ReactNode;
    label: string;
    selected?: boolean;
};
