import React from 'react';
export interface DeveloperKeysProps extends React.PropsWithChildren {
    title?: string;
    empty?: React.ReactNode;
    add?: React.ReactNode;
}
export declare const DeveloperKeys: React.FC<DeveloperKeysProps>;
export * from './styled';
