import React from 'react'; interface LabelOptionalProps { show: boolean; theme?: string; } declare const LabelOptional: ({ show, theme }: LabelOptionalProps) => React.JSX.Element; export default LabelOptional;