import React from 'react'; import { Theme } from '../../styles'; export interface InfoLabelProps { title: string; titleStyles?: any; childStyles?: any; placeholder?: string; children?: React.ReactNode; } export declare function InfoLabel(props: InfoLabelProps): JSX.Element; export declare const createStyles: (theme: Theme, { placeholder }: InfoLabelProps) => { infoLabel: React.CSSProperties; title: React.CSSProperties; child: React.CSSProperties; };