export interface IfProps { data: boolean; children: any; } declare function If(props: IfProps): any; export default If;