// Type definitions for react-daum-postcode 1.3 // Project: https://github.com/kimminsik-bernard/react-daum-postcode // Definitions by: Sa-ryong Kang // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.2 import { Component } from 'react'; export namespace DaumPostcode { interface Props { onComplete: any; width?: number | string; height?: number | string; autoClose?: boolean; autoResize?: boolean; animation?: boolean; style?: any; defaultQuery?: string; theme?: any; scriptUrl?: string; } } export default class DaumPostcode extends Component { render(): JSX.Element; }