import { Proposal } from '@polkadot/types/interfaces'; import BN from 'bn.js'; import React from 'react'; import { InsetProps } from './Inset'; interface Props { className?: string; asInset?: boolean; insetProps?: Partial; proposal?: Proposal | null; idNumber: BN | number | string; isCollapsible?: boolean; withLinks?: boolean; expandNested?: boolean; } export declare const styles = "\n margin-bottom: 1rem;\n\n .ui--ProposedAction-extrinsic {\n .ui--Params-Content {\n padding-left: 0;\n }\n }\n\n .ui--ProposedAction-header {\n margin-bottom: 1rem;\n }\n"; declare function ProposedAction({ className, asInset, idNumber, insetProps, isCollapsible, proposal, withLinks, expandNested }: Props): React.ReactElement; declare const _default: import("styled-components").StyledComponent; export default _default;