Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui-presets / dist / presets / Checkout / DeliveryInstruction / DeliveryInstruction.d.ts
Size: Mime:
import React from 'react';
import { ExpandableState } from '@skava/ui/dist/components/organisms/ExpandableCard';
import { defaultRenderToggleButton, defaultRenderExpandedView } from './renderProps';
import { DeliveryInstructionProps } from './typings';
declare class DeliveryInstruction extends React.Component<DeliveryInstructionProps> {
    static defaultProps: {
        className: string;
        isSelected: boolean;
        renderToggleButton: typeof defaultRenderToggleButton;
        renderExpandedView: typeof defaultRenderExpandedView;
    };
    observableState: ExpandableState;
    componentWillMount(): void;
    render(): JSX.Element;
}
export { DeliveryInstruction };
export default DeliveryInstruction;