import React from 'react';
export interface BookmarksProps extends React.PropsWithChildren {
    className?: string;
    add?: React.ReactNode;
    'aria-label'?: string;
}
export declare const Bookmarks: React.FC<BookmarksProps>;
export * from './styled';
