/** * Copyright Zendesk, Inc. * * Use of this source code is governed under the Apache License, Version 2.0 * found at http://www.apache.org/licenses/LICENSE-2.0. */ import React from 'react'; import PropTypes from 'prop-types'; import { IPaneProviderProps } from '../../types'; export declare const PaneProvider: { ({ id, totalPanesWidth, totalPanesHeight, defaultRowValues, defaultColumnValues, rowValues, columnValues, onChange, children }: IPaneProviderProps): React.JSX.Element; displayName: string; propTypes: { id: PropTypes.Requireable; totalPanesWidth: PropTypes.Validator; totalPanesHeight: PropTypes.Validator; defaultRowValues: PropTypes.Requireable; defaultColumnValues: PropTypes.Requireable; rowValues: PropTypes.Requireable; columnValues: PropTypes.Requireable; onChange: PropTypes.Requireable<(...args: any[]) => any>; children: PropTypes.Requireable<(...args: any[]) => any>; }; };