import * as React from 'react';
import './component.scss';
export default class BuiltIn extends React.Component<{
    custom: any;
}> {
    props: {
        custom: any;
    };
    renderEmpty(): any;
    renderCustomProp(): any;
    render(): any;
}
